Your ROOT_URL in app.ini is unix://git.lalonde.me:3000/ but you are visiting https://git.lalonde.me/matth/subgraph-oz/commit/764b963ab643295bfc92fb36476a990f94c6b048?style=split&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
6 additions and
8 deletions
@ -10,7 +10,6 @@ import (
"github.com/subgraph/oz/network"
"github.com/subgraph/oz/network"
"github.com/op/go-logging"
"github.com/op/go-logging"
"github.com/subgraph/oz/fs"
"os"
"os"
"path"
"path"
)
)
@ -87,12 +86,6 @@ func initialize() *daemonState {
}
}
}
}
rootfs := path . Join ( config . SandboxPath , "rootfs" )
fs := fs . NewFilesystem ( config , d . log )
d . log . Info ( "Creating root filesystem at %s" , rootfs )
if err := setupRootfs ( fs ) ; err != nil {
d . log . Fatalf ( "Failed setting up root filesystem: %v" , err )
}
sockets := path . Join ( config . SandboxPath , "sockets" )
sockets := path . Join ( config . SandboxPath , "sockets" )
if err := os . MkdirAll ( sockets , 0755 ) ; err != nil {
if err := os . MkdirAll ( sockets , 0755 ) ; err != nil {
d . log . Fatalf ( "Failed to create sockets directory: %v" , err )
d . log . Fatalf ( "Failed to create sockets directory: %v" , err )
@ -503,8 +503,13 @@ func (st *initState) childrenVector() []*exec.Cmd {
}
}
func ( st * initState ) setupFilesystem ( extra [ ] oz . WhitelistItem ) error {
func ( st * initState ) setupFilesystem ( extra [ ] oz . WhitelistItem ) error {
fs := fs . NewFilesystem ( st . config , st . log )
fs := fs . NewFilesystem ( st . config , st . log )
if err := setupRootfs ( fs ) ; err != nil {
return err
}
if err := st . bindWhitelist ( fs , st . profile . Whitelist ) ; err != nil {
if err := st . bindWhitelist ( fs , st . profile . Whitelist ) ; err != nil {
return err
return err
}
}
@ -1,4 +1,4 @@
package daem on
package ozi nit
import (
import (
"fmt"
"fmt"