84669 person learning
152542 person learning
20005 person learning
5487 person learning
7821 person learning
359900 person learning
3350 person learning
180660 person learning
48569 person learning
18603 person learning
40936 person learning
1549 person learning
1183 person learning
32909 person learning
Can I map an IP address like 127.0.0.1 to the domain name and port?
127.0.0.1
For example, I want to map 127.0.0.1 to api.example.com:8000
api.example.com:8000
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; } }
No, this is impossible. The port is not part of the hostname, so it has no meaning in the hosts file.
hosts
If you really need to do this, use a reverse proxy. For example, using Nginx:
No, this is impossible. The port is not part of the hostname, so it has no meaning in the
hosts
file.