mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-29 15:06:26 +02:00
Removed unecessary application_id s
This commit is contained in:
16
roles/srv-web-7-7-letsencrypt/templates/letsencrypt.conf.j2
Normal file
16
roles/srv-web-7-7-letsencrypt/templates/letsencrypt.conf.j2
Normal file
@@ -0,0 +1,16 @@
|
||||
server
|
||||
{
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
location /
|
||||
{
|
||||
return 301 https://$host$request_uri;
|
||||
}
|
||||
#letsencrypt
|
||||
location ^~ /.well-known/acme-challenge/ {
|
||||
allow all;
|
||||
root {{ certbot_webroot_path }};
|
||||
default_type "text/plain";
|
||||
try_files $uri =404;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user