mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-04-28 18:12:27 +00:00
14 lines
515 B
Plaintext
14 lines
515 B
Plaintext
# Since force-ssl.conf has now moved to the server section it overrides
|
|
# the LetsEncrypt config which is inside a location section
|
|
# Set FORCE variable in first two if tests pass and action in the third
|
|
set $FORCE "";
|
|
if ($scheme = "http") {
|
|
set $FORCE 'H';
|
|
}
|
|
if ($request_uri !~ "^\/\.well-known\/acme-challenge\/(.*)") {
|
|
set $FORCE "${FORCE}D";
|
|
}
|
|
# If we are http and outside the LetsEncrypt directories redirect to https via 301
|
|
if ($FORCE = HD) {
|
|
return 301 https://$host$request_uri;
|
|
} |