Skip to content

Commit 517ca98

Browse files
committed
fix: use 0.0.0.0 as webserver default address in sample config
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.
1 parent ea22225 commit 517ca98

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

config.sample.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
webserver:
2-
listen_addr: "127.0.0.1"
2+
listen_addr: "0.0.0.0"
33
listen_port: 8080
44
full_url: "/full-stream"
55
lite_url: "/"

0 commit comments

Comments
 (0)