8

I had to change my default apache port number 80 to 8123 (just random number)

I changed the following files ..

httpd.conf

Listen 8123
ServerName localhost:8123

httpd-vhosts.conf

NameVirtualHost *:8123
<VirtualHost *:8123>
  ServerName localhost
  DocumentRoot "C:/xampp/htdocs"
  DirectoryIndex index.php
</VirtualHost>

Windows Hosts file

127.0.0.1:8123     localhost
::1:8123           localhost

I am using Windows 7.

After making all these changes, I restarted apache but I am still unable to access http://localhost .... however http://localhost:8123 works fine ... can someone help me find what I am doing wrong here? thanks

user1421214
  • 909
  • 4
  • 17
  • 24
  • Adding a port number to an ip address in a `hosts` file does not makse sense. The `hosts` file is to create a relation between an ip address and one or more host names. The first entry in a `hosts` file has to be an ip address only! The follwing entries shall be host names. – alk Oct 31 '12 at 10:27
  • If you tell a server not to listen on port xyz, it doesn't listen on port xyz, that's it. – alk Oct 31 '12 at 10:29
  • lol is that dynmap I see? – Philippos Slicher Jan 17 '16 at 17:33

2 Answers2

5

The only way to do this is to change back to 80, or to install a listener on port 80 (like a proxy) that redirects all your traffic to port 8123.

When you enter a server name without a port, port 80 is assumed by default. AFAIK, there is no way to change this behaviour without changing your browser's source code.

The hosts file does not support the kind of redirection you are trying to do. The rules simply fail.

Edit: ah, it might be possible to change the default port in some browsers. Here's an article in MozillaZine for Firefox.

Pekka
  • 442,112
  • 142
  • 972
  • 1,088
2

You can remove it with proxyPass and proxyPassReverse

<VirtualHost *>
    ServerName localhost
    ProxyPass / http://127.0.0.1:8123/ 
    ProxyPassReverse / http://127.0.0.1:8123/ 
</VirtualHost>
J.A.I.L.
  • 10,644
  • 4
  • 37
  • 50