fix: proxy conf in dev

This commit is contained in:
Andras Bacsai
2024-10-04 13:25:05 +02:00
parent 82daf6c420
commit ce49f4806d
2 changed files with 5 additions and 2 deletions

View File

@@ -448,12 +448,15 @@ $schema://$host {
// 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->value) {
$proxy_path = $proxy_path;
// Do nothing
} elseif ($proxyType === ProxyTypes::CADDY->value) {
$proxy_path = $proxy_path.'/caddy';
} elseif ($proxyType === ProxyTypes::NGINX->value) {
$proxy_path = $proxy_path.'/nginx';
}
if (isDev()) {
$proxy_path = '/var/lib/docker/volumes/coolify_dev_coolify_data/_data/proxy';
}
return $proxy_path;
}