Skip to content

Instantly share code, notes, and snippets.

@slaysd
Created January 26, 2018 03:43
Show Gist options
  • Save slaysd/69cc56116d88ba5af54f5321a788db74 to your computer and use it in GitHub Desktop.
Save slaysd/69cc56116d88ba5af54f5321a788db74 to your computer and use it in GitHub Desktop.
Portainer Nginx 프록시 설정(웹소켓 안될시)
upstream portainer_yourdomain_com {
server 127.0.0.1:9000;
}
server {
listen 80;
server_name portainer.yourdomain.com;
location / {
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_cache_bypass $http_upgrade;
proxy_cache_valid 200 302 1m;
proxy_pass $scheme://portainer_yourdomain_com;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment