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