Skip to content

Commit

Permalink
fix: use 0.0.0.0 as webserver default address in sample config
Browse files Browse the repository at this point in the history
When using 127.0.0.1 as default, docker containers won't work at all without mounting a custom config file into the container, because the application listens to localhost. The Docker build copies the sample config into the image. This way the application works just fine without specifying a custom config if you're happy with using defaults.
  • Loading branch information
d-Rickyy-b committed Aug 8, 2022
1 parent ea22225 commit 517ca98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config.sample.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
webserver:
listen_addr: "127.0.0.1"
listen_addr: "0.0.0.0"
listen_port: 8080
full_url: "/full-stream"
lite_url: "/"
Expand Down

0 comments on commit 517ca98

Please sign in to comment.