Adding some includes

This commit is contained in:
warezjoe
2026-03-03 14:49:11 +01:00
parent 3fb12ed9d8
commit 3e5a68a93a
4 changed files with 17 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
set $test "";
if ($scheme = "http") {
set $test "H";
}
if ($request_uri = /.well-known/acme-challenge/test-challenge) {
set $test "${test}T";
}
if ($test = H) {
return 301 https://$host$request_uri;
}