Your ROOT_URL in app.ini is unix://git.lalonde.me:3000/ but you are visiting https://git.lalonde.me/matth/subgraph-oz/commit/89775d8f99350c6d0e0339be2fddb3c60a83c22c You should set ROOT_URL correctly, otherwise the web may not work correctly.

also resolve vars in whitelist target path

networking
brl 10 years ago
parent 5c667946e9
commit 89775d8f99

@ -63,9 +63,13 @@ func (fs *Filesystem) newItem(path, target string, readonly bool) (*mountItem, e
if err != nil {
return nil, err
}
t, err := fs.resolveVars(target)
if err != nil {
return nil, err
}
return &mountItem{
path: p,
target: target,
target: t,
//readonly: readonly,
fs: fs,
}, nil

Loading…
Cancel
Save