Compare commits

...

2 Commits

Author SHA1 Message Date
Pau Capó
54d6196d36 use tabs instead of spaces 2024-06-22 15:01:39 +02:00
Pau Capó
1a12f7f3a8 force-ssl behind another proxy using http_x_forwarded_proto 2024-06-22 14:56:52 +02:00

View File

@@ -2,6 +2,9 @@ set $test "";
if ($scheme = "http") {
set $test "H";
}
if ($http_x_forwarded_proto = "http") {
set $test "H";
}
if ($request_uri = /.well-known/acme-challenge/test-challenge) {
set $test "${test}T";
}