Your ROOT_URL in app.ini is unix://git.lalonde.me:3000/ but you are visiting https://git.lalonde.me/matth/subgraph-oz/commit/41e8e4f9e2ac1fc0a8ce5c789bedd324151d2710?style=unified&whitespace=ignore-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

Merge branch 'master' into networking

master
xSmurf 10 years ago
commit 41e8e4f9e2

@ -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