fix(Server): Correct proxy path formatting for Traefik proxy type
This commit is contained in:
parent
65be880d70
commit
4e82383b94
1 changed files with 1 additions and 1 deletions
|
|
@ -488,7 +488,7 @@ public function proxyPath()
|
|||
$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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue