Merge pull request #25 from profullstack/fix/pod-public-html-bind-mount

fix(pods): bind-mount host public_html into the pod so ~/public_html is served
This commit is contained in:
Anthony Ettinger 2026-06-15 06:44:37 -07:00 committed by GitHub
commit cbe7a44bd5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 129 additions and 22 deletions

View file

@ -191,7 +191,7 @@ func main() {
}()
}
if m, err := pods.Detect(); err == nil {
if m, err := pods.Detect(filepath.Join(dataDir, "users")); err == nil {
a.pods = m
log.Info("pods enabled", "engine", m.Engine())
} else {