2017-07-19 20:42:23 +02:00
|
|
|
server {
|
|
|
|
listen 80 default_server;
|
|
|
|
server_name _;
|
|
|
|
return 301 https://$host$request_uri;
|
|
|
|
}
|
2016-06-01 18:36:36 +02:00
|
|
|
|
2016-10-15 13:29:13 +02:00
|
|
|
map $http_x_forwarded_proto $proxy_x_forwarded_proto {
|
|
|
|
default $http_x_forwarded_proto;
|
|
|
|
'' $scheme;
|
|
|
|
}
|
|
|
|
|
2016-06-01 18:36:36 +02:00
|
|
|
server {
|
2017-05-17 15:28:48 +02:00
|
|
|
listen 443 ssl http2;
|
2016-06-01 18:36:36 +02:00
|
|
|
|
|
|
|
ssl on;
|
|
|
|
ssl_certificate /cert/cert.pem;
|
|
|
|
ssl_certificate_key /cert/key-no-password.pem;
|
|
|
|
ssl_session_timeout 5m;
|
|
|
|
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
|
|
|
|
ssl_ciphers HIGH:MEDIUM:!SSLv2:!PSK:!SRP:!ADH:!AECDH;
|
|
|
|
ssl_prefer_server_ciphers on;
|
|
|
|
|
2017-05-17 15:28:48 +02:00
|
|
|
location ~ /api/v[0-9]+/(users/)?websocket$ {
|
|
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
|
|
proxy_set_header X-Forwarded-Ssl on;
|
|
|
|
proxy_set_header Connection "upgrade";
|
|
|
|
|
|
|
|
client_max_body_size 50M;
|
|
|
|
proxy_set_header Host $http_host;
|
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
2017-06-02 15:19:04 +02:00
|
|
|
proxy_set_header X-Forwarded-Proto $proxy_x_forwarded_proto;
|
2017-05-17 15:28:48 +02:00
|
|
|
proxy_set_header X-Frame-Options SAMEORIGIN;
|
|
|
|
proxy_buffers 256 16k;
|
|
|
|
proxy_buffer_size 16k;
|
|
|
|
proxy_read_timeout 600s;
|
|
|
|
proxy_pass http://app:80;
|
|
|
|
}
|
|
|
|
|
2016-06-01 18:36:36 +02:00
|
|
|
location / {
|
2017-05-17 15:28:48 +02:00
|
|
|
gzip on;
|
2016-06-01 18:36:36 +02:00
|
|
|
proxy_set_header X-Forwarded-Ssl on;
|
|
|
|
|
|
|
|
client_max_body_size 50M;
|
2017-05-17 15:28:48 +02:00
|
|
|
proxy_set_header Connection "";
|
2016-06-01 18:36:36 +02:00
|
|
|
proxy_set_header Host $http_host;
|
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
2017-06-02 15:19:04 +02:00
|
|
|
proxy_set_header X-Forwarded-Proto $proxy_x_forwarded_proto;
|
2016-06-01 18:36:36 +02:00
|
|
|
proxy_set_header X-Frame-Options SAMEORIGIN;
|
2017-05-17 15:28:48 +02:00
|
|
|
proxy_buffers 256 16k;
|
|
|
|
proxy_buffer_size 16k;
|
|
|
|
proxy_read_timeout 600s;
|
2017-02-26 09:30:03 +01:00
|
|
|
proxy_pass http://app:80;
|
2016-06-01 18:36:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# See https://github.com/mattermost/docs/blob/master/source/install/prod-ubuntu.rst for the SSL configuration
|