Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions doc/installation_guidelines/tls.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,13 @@ http {
server {
listen 80;
server_name localhost;
return 301 https://$host$request_uri;
return 308 https://$host$request_uri;
}

server {
client_max_body_size 2G;
listen 443 ssl http2;
listen 443 ssl;
http2 on;
server_name localhost;

ssl_certificate /etc/nginx/ssl/nginx.crt;
Expand Down
Loading