Created
November 6, 2023 16:32
-
-
Save tleyden/c551113ecbb7643e63e85a1beb6ea829 to your computer and use it in GitHub Desktop.
mattermost nginx conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
map $http_upgrade $connection_upgrade { | |
default upgrade; | |
'' close; | |
} | |
server { | |
# HTTPS configuration | |
listen 443 ssl http2; # managed by Certbot | |
ssl_certificate /etc/letsencrypt/live/chat.your.io/fullchain.pem; # managed by Certbot | |
ssl_certificate_key /etc/letsencrypt/live/chat.your.io/privkey.pem; # managed by Certbot | |
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot | |
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot | |
# Enable TLSv1.3's 0-RTT. Use $ssl_early_data when reverse proxying to | |
# prevent replay attacks. | |
# | |
# @see: https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_early_data | |
ssl_early_data on; | |
ssl_session_cache shared:SSL:50m; | |
# HSTS (ngx_http_headers_module is required) (15768000 seconds = six months) | |
add_header Strict-Transport-Security max-age=15768000; | |
# OCSP Stapling --- | |
# fetch OCSP records from URL in ssl_certificate and cache them | |
ssl_stapling on; | |
ssl_stapling_verify on; | |
location ~ /api/v[0-9]+/(users/)?websocket$ { | |
proxy_set_header Upgrade $http_upgrade; | |
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; | |
proxy_set_header X-Forwarded-Proto $scheme; | |
proxy_set_header X-Frame-Options SAMEORIGIN; | |
proxy_buffers 256 16k; | |
proxy_buffer_size 16k; | |
client_body_timeout 60; | |
send_timeout 300; | |
lingering_timeout 5; | |
proxy_connect_timeout 90; | |
proxy_send_timeout 300; | |
proxy_read_timeout 90s; | |
proxy_http_version 1.1; | |
proxy_pass http://127.0.0.1:8065; | |
} | |
location / { | |
proxy_redirect off; | |
client_max_body_size 50M; | |
proxy_set_header Connection ""; | |
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; | |
proxy_set_header X-Forwarded-Proto $scheme; | |
proxy_set_header X-Frame-Options SAMEORIGIN; | |
proxy_buffers 256 16k; | |
proxy_buffer_size 16k; | |
proxy_read_timeout 600s; | |
proxy_cache mattermost_cache; | |
proxy_cache_revalidate on; | |
proxy_cache_min_uses 2; | |
proxy_cache_use_stale timeout; | |
proxy_cache_lock on; | |
proxy_http_version 1.1; | |
proxy_pass http://127.0.0.1:8065; | |
} | |
} | |
server { | |
listen 80; | |
if ($host = chat.your.io) { | |
return 301 https://$host$request_uri; | |
} # managed by Certbot | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment