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.
127.0.0.1ドメイン名やポートのようにIPアドレスをマッピングできますか?
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; } }