Can I use /etc/hosts to map hostnames *and* ports?
P粉512729862
P粉512729862 2023-10-15 18:38:02
0
2
777

Can I map an IP address like 127.0.0.1 to the domain name and port?

For example, I want to map 127.0.0.1 to api.example.com:8000

P粉512729862
P粉512729862

reply all(2)
P粉007288593

If you really need to do this, use a reverse proxy. For example, using Nginx:

server {
  listen       api.mydomain.com:80;
  server_name  api.mydomain.com;
  location / {
    proxy_pass http://127.0.0.1:8000;
  }
}
P粉899950720

No, this is impossible. The port is not part of the hostname, so it has no meaning in the hosts file.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!