1
0

Рабочие роли вынесены на уровень вверх

This commit is contained in:
2018-11-25 15:08:16 +03:00
parent 368eeeaa0b
commit 50b61315eb
13 changed files with 3 additions and 5 deletions

View File

@ -0,0 +1,13 @@
server {
listen 80;
server_name {{ cert_domains|join(' ') }};
location /.well-known {
root {{ cert_le_webroot_path }};
try_files $uri $uri/ =404;
}
location / {
rewrite ^ https://$host$request_uri? permanent;
}
}