bundles/nginx: add nginx config

This commit is contained in:
Franzi 2020-04-13 09:52:26 +02:00
parent 411d22d404
commit ffb962b108
Signed by: kunsi
GPG key ID: 12E3D2136B818350
4 changed files with 76 additions and 1 deletions

View file

@ -0,0 +1,13 @@
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/;
}
}