forked from ccchb/ansible
13 lines
149 B
Text
13 lines
149 B
Text
|
server {
|
||
|
listen [::]:80;
|
||
|
listen 80;
|
||
|
|
||
|
server_name _;
|
||
|
|
||
|
location / {
|
||
|
return 301 https://$host$request_uri;
|
||
|
}
|
||
|
|
||
|
include snippets/tls-acme.conf;
|
||
|
}
|