我有一个带有nginx和docker容器的小滴,可在端口4001上工作。 我设法只实现了从主URL到工作容器的重定向
events {}
http {
server {
listen 80;
server_name 1.1.1.1;
port_in_redirect off;
location / {
return 200 'This is nginx stroke';
}
location ~ /cv {
rewrite ^/cv(.*) http://1.1.1.1:4001;
}
}
}
当url为http://1.1.1.1/cv
时,我重定向到http://1.1.1.1:4001
。如何在没有端口:4001
的情况下进行修复
如果我使用
location /cv {
proxy_pass http://localhost:4001;
}
在检查管理器中,我看到一个空的react项目,其中没有我的组件:
但是头很重要