small changes to nginx default config file

merge-requests/4/head
Matthew 2020-03-28 18:16:27 -04:00
parent eafcdf1cf6
commit 9433ad997f
No known key found for this signature in database
GPG Key ID: 766BE43AE75F7559
1 changed files with 23 additions and 23 deletions

View File

@ -3,40 +3,40 @@ server {
listen [::]:443 ssl http2; listen [::]:443 ssl http2;
server_name [DOMAIN]; server_name [DOMAIN];
ssl_certificate [CERTIFICATE]; ssl_certificate [CERTIFICATE];
ssl_certificate_key [KEY]; ssl_certificate_key [KEY];
ssl_session_cache builtin:1000 shared:SSL:10m; ssl_session_cache builtin:1000 shared:SSL:10m;
include /etc/nginx/error/502; include /etc/nginx/error/502;
include /etc/nginx/error/504; include /etc/nginx/error/504;
include /etc/nginx/error/500; include /etc/nginx/error/500;
include /etc/nginx/error/404; include /etc/nginx/error/404;
include /etc/nginx/error/429; include /etc/nginx/error/429;
ssl_protocols TLSv1.2 TLSv1.3; ssl_protocols TLSv1.2 TLSv1.3;
ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384; ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384;
ssl_prefer_server_ciphers on; ssl_prefer_server_ciphers on;
ssl_stapling on; ssl_stapling on;
ssl_stapling_verify on; ssl_stapling_verify on;
limit_req zone=one burst=5; limit_req zone=one burst=15;
location / { location / {
proxy_set_header Host $host; proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Forwarded-Proto $scheme;
proxy_pass http://localhost:[PORT]; proxy_pass http://localhost:[PORT];
proxy_read_timeout 90; proxy_read_timeout 90;
proxy_redirect http://localhost:[PORT] https://[DOMAIN]; proxy_redirect http://localhost:[PORT] https://[DOMAIN];
} }
} }