Last active
October 30, 2022 22:31
-
-
Save DonSYS91/be70f2a49776ab0eb1622a015cbcab51 to your computer and use it in GitHub Desktop.
Docker Installation: NGINX Secure Conf with full SSL Labs A+ and Reverse Proxy
This file contains hidden or 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
| server { | |
| listen 80 default_server; | |
| listen [::]:80 default_server; | |
| location / { | |
| return 301 https://$host$request_uri; | |
| } | |
| } | |
| server { | |
| listen 443 ssl http2; | |
| listen [::]:443 ssl http2; | |
| ssl_certificate /etc/nginx/conf.d/web.crt; | |
| ssl_certificate_key /etc/nginx/conf.d/web.key; | |
| ssl_session_timeout 1d; | |
| ssl_session_cache shared:MozSSL:10m; # about 40000 sessions | |
| ssl_session_tickets off; | |
| # intermediate configuration | |
| ssl_protocols TLSv1.2 TLSv1.3; | |
| ssl_prefer_server_ciphers on; | |
| ssl_ciphers "TLS_CHACHA20_POLY1305_SHA256:TLS_AES_256_GCM_SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384"; | |
| ssl_conf_command Ciphersuites TLS_CHACHA20_POLY1305_SHA256; | |
| ssl_conf_command Options ServerPreference,PrioritizeChaCha,NoRenegotiation,NoResumptionOnRenegotiation; | |
| ssl_ecdh_curve secp521r1:secp384r1; | |
| # HSTS (ngx_http_headers_module is required) (31536000 seconds) | |
| add_header Strict-Transport-Security 'max-age=31536000; includeSubDomains; preload' always; | |
| # OCSP stapling | |
| ssl_stapling on; | |
| ssl_stapling_verify on; | |
| location / { | |
| proxy_pass http://172.18.0.3; | |
| 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; | |
| } | |
| # replace with the IP address of your resolver | |
| resolver 1.1.1.1 1.0.0.1 [2606:4700:4700::1111] [2606:4700:4700::1001]; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment