DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=26172>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=26172 JkURISet makes URI available to all Virtual Hosts even if not defined for them Summary: JkURISet makes URI available to all Virtual Hosts even if not defined for them Product: Apache httpd-2.0 Version: 2.0.48 Platform: PC OS/Version: Linux Status: NEW Severity: Normal Priority: Other Component: Other Modules AssignedTo: [email protected] ReportedBy: [EMAIL PROTECTED] the below code taken from my httpd.conf file makes the url /stproc/* available to both the 51 and 52 hosts. This is an issue for us since we only want to secure IP to provide access to this section. is there a way to issue a JkURISet and have it only available within the given Virtual host that it was defined in ? ---- <VirtualHost 192.1.2.51:80> ServerName "192.1.2.51:80" ServerAdmin "[EMAIL PROTECTED]" DocumentRoot "/usr/local/server1/web" DefaultType "text/plain" DirectoryIndex index.html ErrorLog "/usr/local/server2/logs/error_log" LogLevel warn CustomLog "/usr/local/server2/logs/access_log" common </VirtualHost> ##---------------------------------------- ## 52 XDS ##---------------------------------------- <VirtualHost 192.1.2.52:80> ServerName "192.1.2.52:80" ServerAdmin "[EMAIL PROTECTED]" DocumentRoot "/usr/local/server2/web" DefaultType "text/plain" DirectoryIndex index.html ErrorLog "/usr/local/server2/logs/error_log" LogLevel warn CustomLog "/usr/local/server2/logs/access_log" common <IfModule mod_jk2.c> <Location "http://192.1.2.52/stproc/*"> JkUriSet lb lb </Location> </IfModule> </VirtualHost> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
