summaryrefslogtreecommitdiff
path: root/index.pl
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2020-05-03 13:29:30 +0200
committerDaniel Friesel <derf@finalrewind.org>2020-05-03 13:29:30 +0200
commitdc023ffb94700519374f2ef705c52d1ca5143c7f (patch)
treef6ae0bcb569c5a8d3dfe4bef13547b9693bde948 /index.pl
parent78c494c6240d5a76b99853ad4d8ab6b9df3b8884 (diff)
listen on * by default
Diffstat (limited to 'index.pl')
-rw-r--r--index.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.pl b/index.pl
index 504803a..b1a4cac 100644
--- a/index.pl
+++ b/index.pl
@@ -688,7 +688,7 @@ get '/:stop' => \&handle_request;
app->config(
hypnotoad => {
- listen => [ $ENV{VRRFAKEDISPLAY_LISTEN} // 'http://127.0.0.1:8091' ],
+ listen => [ $ENV{VRRFAKEDISPLAY_LISTEN} // 'http://*:8091' ],
pid_file => '/tmp/vrr-fakedisplay.pid',
workers => $ENV{VRRFAKEDISPLAY_WORKERS} // 2,
},