Advertisement
JLindvig

nginx/portainer

Oct 30th, 2019
317
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.09 KB | None | 0 0
  1. server {
  2.         listen 443 ssl http2;
  3.  
  4.         root /config/www;
  5.         index index.html index.htm index.php;
  6.  
  7.         server_name portainer.DIT_DOMAIN.duckdns.org;
  8.  
  9.         client_max_body_size 0;
  10.  
  11.         ssl_certificate /etc/letsencrypt/live/portainer.DIT_DOMAIN.duckdns.org/fullchain.pem;
  12.         ssl_certificate_key /etc/letsencrypt/live/portainer.DIT_DOMAIN.duckdns.org/privkey.pem;
  13.         ssl_protocols TLSv1.1 TLSv1.2;
  14.         ssl_ciphers "EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH:!aNULL:!eNULL:!EXPORT:!DES:!MD5:!PSK:!RC4";
  15.         add_header Strict-Transport-Security "max-age=31536000; includeSubdomains";
  16.         ssl_prefer_server_ciphers on;
  17.  
  18.         location / {
  19.                 proxy_pass http://portainer/;
  20.                 proxy_http_version 1.1;
  21.                 proxy_set_header Connection "";
  22.         }
  23.  
  24.         location /api/websocket/ {
  25.                 proxy_set_header Upgrade $http_upgrade;
  26.                 proxy_set_header Connection "upgrade";
  27.                 proxy_http_version 1.1;
  28.                 proxy_pass http://portainer/api/websocket/;
  29.         }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement