Skip to content
Snippets Groups Projects

Merging develop into main

Merged jurgenhaas requested to merge develop into main
1 file
+ 6
2
Compare changes
  • Side-by-side
  • Inline
+ 6
2
@@ -184,8 +184,12 @@ class Traefik {
$upd2 = $this->updateFile($traefikFile, Yaml::dump($this->defaultDockerCompose(), 9, 2));
if ($upd1 || $upd2) {
if ($user) {
$fs->chown($traefikConfigPath . '/certificates.toml', $user, TRUE);
$fs->chown($traefikFile, $user, TRUE);
if (file_exists($traefikConfigPath . '/certificates.toml')) {
$fs->chown($traefikConfigPath . '/certificates.toml', $user, TRUE);
}
if (file_exists($traefikFile)) {
$fs->chown($traefikFile, $user, TRUE);
}
}
$cwd = getcwd();
chdir($traefikPath);
Loading