fix(Server): Correct proxy path formatting for Traefik proxy type

This commit is contained in:
Andras Bacsai
2025-04-29 10:53:39 +02:00
parent 65be880d70
commit 4e82383b94

View File

@@ -488,7 +488,7 @@ $schema://$host {
$proxy_path = "$base_path/proxy";
if ($proxyType === ProxyTypes::TRAEFIK->value) {
$proxy_path = '/';
$proxy_path = $proxy_path.'/';
} elseif ($proxyType === ProxyTypes::CADDY->value) {
$proxy_path = $proxy_path.'/caddy';
} elseif ($proxyType === ProxyTypes::NGINX->value) {