Add dynamic proxy configuration setup in StartProxy.php and update proxyPath() in Server.php
This commit is contained in:
@@ -66,6 +66,8 @@ class StartProxy
|
|||||||
} catch (\Throwable $e) {
|
} catch (\Throwable $e) {
|
||||||
ray($e);
|
ray($e);
|
||||||
throw $e;
|
throw $e;
|
||||||
|
} finally {
|
||||||
|
$server->setupDynamicProxyConfiguration();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -279,6 +279,9 @@ $schema://$host {
|
|||||||
$base_path = config('coolify.base_config_path');
|
$base_path = config('coolify.base_config_path');
|
||||||
$proxyType = $this->proxyType();
|
$proxyType = $this->proxyType();
|
||||||
$proxy_path = "$base_path/proxy";
|
$proxy_path = "$base_path/proxy";
|
||||||
|
// TODO: should use /traefik for already exisiting configurations?
|
||||||
|
// Should move everything except /caddy and /nginx to /traefik
|
||||||
|
// The code needs to be modified as well, so maybe it does not worth it
|
||||||
if ($proxyType === ProxyTypes::TRAEFIK_V2->value) {
|
if ($proxyType === ProxyTypes::TRAEFIK_V2->value) {
|
||||||
$proxy_path = $proxy_path;
|
$proxy_path = $proxy_path;
|
||||||
} else if ($proxyType === ProxyTypes::CADDY->value) {
|
} else if ($proxyType === ProxyTypes::CADDY->value) {
|
||||||
|
|||||||
Reference in New Issue
Block a user