Add configurable bind address (#36)
This commit is contained in:
5
main.go
5
main.go
@@ -24,10 +24,12 @@ var (
|
|||||||
func init() {
|
func init() {
|
||||||
// command-line flags
|
// command-line flags
|
||||||
flagDisableLogin := flag.Bool("disable-login", false, "Disable login page. Turn off authentication.")
|
flagDisableLogin := flag.Bool("disable-login", false, "Disable login page. Turn off authentication.")
|
||||||
|
flagBindAddress := flag.String("bind-address", "0.0.0.0:5000", "Address:Port to which the app will be bound.")
|
||||||
flag.Parse()
|
flag.Parse()
|
||||||
|
|
||||||
// update runtime config
|
// update runtime config
|
||||||
util.DisableLogin = *flagDisableLogin
|
util.DisableLogin = *flagDisableLogin
|
||||||
|
util.BindAddress = *flagBindAddress
|
||||||
|
|
||||||
// print app information
|
// print app information
|
||||||
fmt.Println("Wireguard UI")
|
fmt.Println("Wireguard UI")
|
||||||
@@ -37,6 +39,7 @@ func init() {
|
|||||||
fmt.Println("Build Time\t:", buildTime)
|
fmt.Println("Build Time\t:", buildTime)
|
||||||
fmt.Println("Git Repo\t:", "https://github.com/ngoduykhanh/wireguard-ui")
|
fmt.Println("Git Repo\t:", "https://github.com/ngoduykhanh/wireguard-ui")
|
||||||
fmt.Println("Authentication\t:", !util.DisableLogin)
|
fmt.Println("Authentication\t:", !util.DisableLogin)
|
||||||
|
fmt.Println("Bind address\t:", util.BindAddress)
|
||||||
|
|
||||||
// initialize DB
|
// initialize DB
|
||||||
err := util.InitDB()
|
err := util.InitDB()
|
||||||
@@ -86,5 +89,5 @@ func main() {
|
|||||||
// servers other static files
|
// servers other static files
|
||||||
app.GET("/static/*", echo.WrapHandler(http.StripPrefix("/static/", assetHandler)))
|
app.GET("/static/*", echo.WrapHandler(http.StripPrefix("/static/", assetHandler)))
|
||||||
|
|
||||||
app.Logger.Fatal(app.Start("0.0.0.0:5000"))
|
app.Logger.Fatal(app.Start(util.BindAddress))
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,4 +3,5 @@ package util
|
|||||||
// Runtime config
|
// Runtime config
|
||||||
var (
|
var (
|
||||||
DisableLogin bool
|
DisableLogin bool
|
||||||
|
BindAddress string
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user