servers/roles/nginx/files/default.conf

12 lines
244 B
Plaintext
Raw Normal View History

# handle .well-known and HTTPS redirect for all domains
server {
listen 80 default_server;
listen [::]:80 default_server;
location /.well-known/ {
alias /srv/http/.well-known/;
}
location / {
return 301 https://$host$request_uri;
}
}