在本地环境(MAC)上进行 MSA 开发的转发端口
Posted
技术标签:
【中文标题】在本地环境(MAC)上进行 MSA 开发的转发端口【英文标题】:Forwarding Ports on MSA development on local environment(MAC) 【发布时间】:2022-01-20 20:12:24 【问题描述】:我想做一个这样的开发环境。
http://local-a.com -> redirects to localhost:8080
https://local-a.com -> redirects to localhost:8443
http://local-b.com -> redirects to localhost:8090
https://local-b.com -> redirects to localhost:9443
http://local-c.com -> redirecnts to localhost:8100
https://local-c.com -> redirects to localhost:10443
你能建议怎么做吗? 似乎 /etc/pf.conf 文件和 /etc/hosts 文件可以做到这一点,但我很困惑如何做到这一点。
只是一些链接指南会对我有所帮助。 谢谢。
参考:https://apple.stackexchange.com/questions/332145/mapping-port-80-to-8080-but-maintain-explicit-8080-access【问题讨论】:
【参考方案1】:好的。我用这种方法解决了我的问题。 /etc/hosts
127.0.0.1 local-a.com
127.0.0.1 local-b.com
127.0.0.1 local-c.com
使用 nginx.conf
server
listen 80;
server_name local-a.com;
location /
proxy_set_header Host $host;
proxy_set_header X-Front-Server-Ip $remote_addr;
proxy_set_header X-Forwarded-Proto 'http';
proxy_pass http://localhost:8080;
server
listen 80;
server_name local-b.com;
location /
proxy_set_header Host $host;
proxy_set_header X-Front-Server-Ip $remote_addr;
proxy_set_header X-Forwarded-Proto 'http';
proxy_pass http://localhost:8090;
...
【讨论】:
以上是关于在本地环境(MAC)上进行 MSA 开发的转发端口的主要内容,如果未能解决你的问题,请参考以下文章
Mac下如何进行端口转发,方便一系列需要使用80端口进行的调试工作