@ppraj wrote:
upstream portainer {
server ADDRESS:PORT;
}server {
listen 80;location /portainer/ {
proxy_http_version 1.1;
proxy_set_header Connection "";
proxy_pass http://portainer/;
}
location /portainer/ws/ {
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_http_version 1.1;
proxy_pass http://portainer/ws/;
}
}Please find this link, as I need to serve content with virtual path for the application and the example as with nginx
Posts: 2
Participants: 2