nginx的Proxy_pass Docker端口

时间:2019-11-04 18:24:53

标签: docker nginx server

我尝试使用nginx创建新的proxy_pass。我想将xxx.xxx.xx.xx:8080重定向到mydomain.com。

我的xxx.xxx.xx.xx:8080正在由Docker应用程序运行,但我可以访问此URL。为了重定向到我的域,我已经创建了新的conf,像这样:

server {
    listen 80;
    server_name mydomain.com;

    location / {
        proxy_pass http://xxx.xxx.xx.xx:8080;
    }
}

但是不起作用,也许我忘记了一个参数?

有人知道吗?

谢谢社区!

0 个答案:

没有答案