mirror of https://dev.ccchb.de/ccchb/ansible.git
13 lines
149 B
Plaintext
13 lines
149 B
Plaintext
|
server {
|
||
|
listen [::]:80;
|
||
|
listen 80;
|
||
|
|
||
|
server_name _;
|
||
|
|
||
|
location / {
|
||
|
return 301 https://$host$request_uri;
|
||
|
}
|
||
|
|
||
|
include snippets/tls-acme.conf;
|
||
|
}
|