Last active
June 5, 2021 19:53
-
-
Save stfsy/7a1a8aa75a1a5eaeef01628486701794 to your computer and use it in GitHub Desktop.
NGINX configuration for lets encrypt files | certbot webroot command
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
| include snippets/ssl.conf; | |
| client_header_buffer_size 1k; | |
| client_max_body_size 8m; | |
| large_client_header_buffers 4 4k; | |
| server_tokens off; | |
| server { | |
| listen 8080; | |
| server_name ${main_domain} ${additional_subdomain}; | |
| access_log off; | |
| location ^~ /.well-known/acme-challenge/ { | |
| default_type "text/plain"; | |
| root ${certbot_root_folder}/; | |
| } | |
| location / { | |
| return 301 https://$host$request_uri; | |
| } | |
| } | |
| server { | |
| listen 8443 ssl http2; | |
| server_name ${main_domain} ${additional_subdomain}; | |
| access_log off; | |
| sendfile on; | |
| tcp_nopush on; | |
| tcp_nodelay on; | |
| ssl_certificate /etc/letsencrypt/live/${main_domain}/fullchain.pem; | |
| ssl_certificate_key /etc/letsencrypt/live/${main_domain}/privkey.pem; | |
| ssl_trusted_certificate /etc/letsencrypt/live/${main_domain}/chain.pem; | |
| location / { | |
| proxy_pass http://127.0.0.1:${https_target_port}; | |
| proxy_http_version 1.1; | |
| proxy_set_header Connection ""; | |
| } | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The included file ssl.conf can be found here https://gist.github.com/stfsy/4b12f37a57e5a19970fbaf939fcb707e