Created
November 23, 2019 22:02
-
-
Save cluelessperson/994e56da9e5ff3692e054fcc150cee5e to your computer and use it in GitHub Desktop.
This file contains 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; | |
listen [::]:80; | |
server_name example.com; | |
root /var/www/example.com/; | |
location / { | |
return 301 https://$host$request_uri; | |
} | |
} | |
server { | |
listen 443 ssl; | |
listen [::]:443 ssl; | |
server_name example.com; | |
include /etc/nginx/ssl-params.conf; | |
ssl_certificate_key /etc/letsencrypt/live/example.com/privkey.pem; | |
ssl_certificate /etc/letsencrypt/live/example.com/fullchain.pem; | |
root /var/www/example.com/; | |
location / { | |
return 301 /public/; | |
} | |
location /public { | |
autoindex on; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment