
windows - What exactly is going on when I go to localhost:8080 in my ...
Jul 1, 2015 · Making it simple, localhost as a web address connects to your local machine, where in this case you have Apache installed as web server. The second part, :8080, means connect to port 8080 …
How to map "localhost:8080" to simply "localhost"? - Server Fault
You can set up a reverse proxy to serve at port 80, and forward all requests to 8080. Apache is one of the web servers that can do this for you. There is a basic reverse proxying example in the …
Cannot access port 80 from remote location but works on local?
This doesn't work. Tested on debian. Still can access from localhost, but not from a remote host.
linux - Failed to connect to 127.0.0.1 port 80 - Server Fault
Feb 23, 2015 · $ telnet localhost 80 Trying 127.0.0.1... telnet: Unable to connect to remote host: Connection refused All right in /etc/hosts: 127.0.1.1 ubuntu-work 127.0.0.1 localhost # The following …
Xampp LAMP server: localhost:80 requires a username and password
Jun 10, 2011 · More to the point would be an explanation of the consequences of using or not using a password and account. For example, why does it look for a username and password for localhost? …
Server responding to request but no process listening on that port
Oct 19, 2024 · curl localhost:80 with Caddy (caddy file-server --listen :80) running on the VM directly (no docker involved); returns test page curl 127.0.0.1:80 with Caddy running on the VM directly; returns …
how to change port number of Apache server in windows OS
Now, I want to change the port number 80 to some other number How to change it ? in how many files does it needs to be changed ? dose it require to restart the system to change to take effect ? Note: I …
Error in Installing WordPress in Localhost | WordPress.org
Feb 5, 2025 · In the same file I changed listen 80 to listen listen 85 and changed the servername from localhost:80 to localhost:85. I also changed the port number in httpd-ssl.conf from 443 to 4433 and …
Can't connect to server running apache over port 80
This is a networking issue, not an Apache issue. As you indicated, you can access the page using "curl" when run locally on the web server, but not from a browser on the desktop over the network. Check …
localhost files are not showing up on port 80 - Server Fault
I browse to localhost/ and nothing is shown. No web page, no 'page not found' etc. However, I change httpd.conf to use port 8080, then browse to localhost:8080/ and my local pages show up. Why wo...