Hi ISSUE: Opening a browser on localhost can see all declared vhost (3 different ports), but browsing remotely I can only see one vhost (port 80). What I am I missing?
SETUP: I have declared upon a single site (IP ##.##.##.##) three different VirtualHost configurations; one VirtualHost declared for each of ports 80, 8080, and 8085. I can view all three VirtualHosts (80, 8080, and 8085) when I open my browser upon the same host as my site ##.##.##.##. However, when I try to view my three VirtualHosts from a remote browser, I can view only port 80, but I cannot view ports 8080 or 8085. VirtualHost Config File Template: Used for each of the three ports #### (80, 8080, 8085): ---------------------------------------- # FILE: /etc/httpd/conf/extras/virtual-host.project_site.####.conf Listen #### <Directory "/home/dev/sites/project_site.####/web"> Options Indexes FollowSymLinks Order Allow,Deny AllowOverride All Allow from all </Directory> NameVirtualHost *:#### <VirtualHost *:####> DocumentRoot "/home/dev/sites/project_site.####/web" ServerName project_site.#### </VirtualHost> ---------------------------------------- Output: httpd -t -D DUMP_VHOSTS VirtualHost configuration: wildcard NameVirtualHosts and _default_ servers: _default_:443 localhost (/etc/httpd/conf.d/ssl.conf:81) *:8085 is a NameVirtualHost default server project_site.8085 (/etc/httpd/conf/extras/virtual-host.project_site.8085.conf:23) port 8085 namevhost project_site.8085 (/etc/httpd/conf/extras/virtual-host.project_site.8085.conf:23) *:8080 is a NameVirtualHost default server project_site.8080 (/etc/httpd/conf/extras/virtual-host.project_site.8080.conf:28) port 8080 namevhost project_site.8080 (/etc/httpd/conf/extras/virtual-host.project_site.8080.conf:28) *:80 is a NameVirtualHost default server project_site.80 (/etc/httpd/conf/extras/virtual-host.project_site.80.conf:35) port 80 namevhost project_site.80 (/etc/httpd/conf/extras/virtual-host.project_site.80.conf:35) Thanks Jeff in Seattle -- View this message in context: http://www.nabble.com/Remote-Browsing-of-Other-Ports-than-Port-80-tp23224756p23224756.html Sent from the Apache HTTP Server - Users mailing list archive at Nabble.com. --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See <URL:http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org " from the digest: users-digest-unsubscr...@httpd.apache.org For additional commands, e-mail: users-h...@httpd.apache.org