From 5badce06e3d455785a1ffa6e84aea9ae2d0f71a1 Mon Sep 17 00:00:00 2001 From: Matthew R Date: Sat, 26 Oct 2019 00:03:49 -0400 Subject: [PATCH] Add nginx.conf file for CWG cmd template --- src/static/nginx.conf | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 src/static/nginx.conf diff --git a/src/static/nginx.conf b/src/static/nginx.conf new file mode 100644 index 0000000..3194141 --- /dev/null +++ b/src/static/nginx.conf @@ -0,0 +1,40 @@ +server { + listen 443 ssl http2; + listen [::]:443 ssl http2; + server_name [DOMAIN]; + +ssl_certificate [CERTIFICATE]; +ssl_certificate_key [KEY]; + +ssl_session_cache builtin:1000 shared:SSL:10m; +include /etc/nginx/error/502; +include /etc/nginx/error/504; +include /etc/nginx/error/500; +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_prefer_server_ciphers on; + +ssl_stapling on; +ssl_stapling_verify on; + +limit_req zone=one burst=5; + location / { + +proxy_set_header Host $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_pass http://localhost:[PORT]; + +proxy_read_timeout 90; + +proxy_redirect http://localhost:[PORT] https://[DOMAIN]; + + } +} \ No newline at end of file