首页 > 其他 > 详细

nginx 怎么通过域名访问8080端口(指定端口)

时间:2020-04-08 13:11:27      阅读:393      评论:0      收藏:0      [点我收藏+]
原文:nginx 怎么通过域名访问8080端口(指定端口)

进入到nginx目录下,打开nginx.conf

http {
    server {
            listen 80;
            server_name example.com;

            location /test1 {
                    proxy_pass http://example.com:8080/test1;
            }

            location /test2 {
                    proxy_pass http://example.com:8081/test2;
            }

            location / {
                    proxy_pass http://example.com;
            }
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18

重新加载一下配置文件

./nginx -s reload
  • 1

最主要的地方就是配置好location的地址

当我们输入域名之后加上/test1的时候,就会被nginx映射到我们域名:8080/test1路径上去做请求.
  • 1

nginx 怎么通过域名访问8080端口(指定端口)

原文:https://www.cnblogs.com/lonelyxmas/p/12658815.html

(1)
(1)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!