Skip to content

Commit

Permalink
Merge pull request #2969 from zku/master
Browse files Browse the repository at this point in the history
bind only on localhost interface by default
  • Loading branch information
zku authored Apr 18, 2023
2 parents 80acb8c + 56a4dfd commit 45cd73a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sim/web/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func main() {
var useFS = flag.Bool("usefs", false, "Use local file system for client files. Set to true during development.")
var wasm = flag.Bool("wasm", false, "Use wasm for sim instead of web server apis. Can only be used with usefs=true")
var simName = flag.String("sim", "", "Name of simulator to launch (ex: balance_druid, elemental_shaman, etc)")
var host = flag.String("host", ":3333", "URL to host the interface on.")
var host = flag.String("host", "localhost:3333", "URL to host the interface on.")
var launch = flag.Bool("launch", true, "auto launch browser")
var skipVersionCheck = flag.Bool("nvc", false, "set true to skip version check")

Expand Down

0 comments on commit 45cd73a

Please sign in to comment.