feat: add ACME location
Some checks failed
Deploy / push_to_target_repository (push) Failing after 4m25s

This commit is contained in:
Stepan Vladovskiy 2023-11-28 14:20:19 -03:00
parent a862a11c91
commit 025019b544

View File

@ -40,6 +40,14 @@ server {
}
}
location ~ /.well-known/acme-challenge {
allow all;
root /var/www/html; # Adjust this to the correct path where challenge files are stored
default_type "text/plain";
try_files $uri =404;
}
client_max_body_size 100m;
include /home/dokku/{{ $.APP }}/nginx.conf.d/*.conf;