allow to set address in configuration file

This commit is contained in:
Peven
2021-03-17 18:08:22 +08:00
parent 9952c3e90b
commit 03f5a54764
2 changed files with 3 additions and 1 deletions

View File

@ -3,6 +3,7 @@ package bootstrap
import (
"flag"
"fmt"
"github.com/Xhofe/alist/conf"
serv "github.com/Xhofe/alist/server"
"github.com/gin-gonic/gin"
@ -71,7 +72,7 @@ func start() {
// start http server
func server() {
baseServer := "0.0.0.0:" + conf.Conf.Server.Port
baseServer := conf.Conf.Server.Address + ":" + conf.Conf.Server.Port
r := gin.Default()
serv.InitRouter(r)
log.Infof("Starting server @ %s", baseServer)