NGINX使用代理通过时忽略根

时间:2018-08-03 05:47:45

标签: nginx nginx-location nginx-reverse-proxy

我对NGINX有点问题。我制作了一个简单的HTML,将我的应用程序加载到http://localhost:3000托管的iframe中。

使用下面的配置,localhost:3000被代理,但是root / var / www被忽略,所以我只能看到没有我的html的应用程序。

代理iframe中加载的网址的正确方法是什么?

server {
    listen 80;
    listen [::]:80;

    root /var/www/sub.mydomain.com/html;
    index index.html index.htm index.nginx-debian.html;

    server_name sub.mydomain.com;

    location / {
            proxy_set_header Host $host;
            proxy_pass http://localhost:5601/;
    }
}

0 个答案:

没有答案