1
0
Fork 0
mirror of https://github.com/DO1JLR/ansible_role_nginx.git synced 2024-08-16 16:19:48 +02:00
ansible_role_nginx/files/nginx/sites-available/default_http.j2

11 lines
241 B
Text
Raw Normal View History

2020-11-02 04:51:35 +01:00
server {
listen 80 default_server;
listen [::]:80 default_server;
include snippets/acmetool.snippet.conf;
location ^~ / {
return 308 https://{{ inventory_hostname }}$request_uri;
}
}