Your ROOT_URL in app.ini is unix://git.lalonde.me:3000/ but you are visiting https://git.lalonde.me/matth/subgraph-oz/commit/914ff955d71959970be854a27032212784354bac?style=split&whitespace=ignore-eol
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
0 additions and
5 deletions
@ -141,7 +141,6 @@ func (st *initState) runInit() {
st . log . Info ( "Starting oz-init for profile: %s" , st . profile . Name )
st . log . Info ( "Starting oz-init for profile: %s" , st . profile . Name )
if st . profile . Networking . Nettype != "host" {
if st . profile . Networking . Nettype != "host" {
//NetSetup(stn *SandboxNetwork, htn *HostNetwork) error
err := network . NetSetup ( st . network )
err := network . NetSetup ( st . network )
if err != nil {
if err != nil {
st . log . Error ( "Unable to setup networking: %+v" , err )
st . log . Error ( "Unable to setup networking: %+v" , err )
@ -162,10 +161,6 @@ func (st *initState) runInit() {
oz . ReapChildProcs ( st . log , st . handleChildExit )
oz . ReapChildProcs ( st . log , st . handleChildExit )
if st . profile . XServer . Enabled {
if st . profile . XServer . Enabled {
//if st.display == 0 {
// st.log.Error("Cannot start xpra because no display number was passed to oz-init")
// os.Exit(1)
//}
st . xpraReady . Add ( 1 )
st . xpraReady . Add ( 1 )
st . startXpraServer ( )
st . startXpraServer ( )
}
}