我对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/;
}
}