bundlewrap/bundles/nginx/files/port80.conf

14 lines
293 B
Plaintext
Raw Normal View History

2020-04-13 07:52:26 +00:00
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
location / {
return 301 https://$host$request_uri;
}
location /.well-known/acme-challenge/ {
alias /var/www/default/.well-known/acme-challenge/;
}
}