Skip to content

Instantly share code, notes, and snippets.

@cluelessperson
Created November 23, 2019 22:02
Show Gist options
  • Save cluelessperson/994e56da9e5ff3692e054fcc150cee5e to your computer and use it in GitHub Desktop.
Save cluelessperson/994e56da9e5ff3692e054fcc150cee5e to your computer and use it in GitHub Desktop.
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