Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以将 IP 地址映射127.0.0.1到域名和端口吗?
127.0.0.1
例如,我想映射127.0.0.1到api.example.com:8000
api.example.com:8000
不,那是不可能的。端口不是主机名的一部分,因此在hosts-file 中没有任何意义。
hosts
如果您确实需要这样做,请使用反向代理。例如,使用 Nginx:
server { listen api.mydomain.com:80; server_name api.mydomain.com; location / { proxy_pass http://127.0.0.1:8000; } }