diff options
author | Daniel Friesel <derf@finalrewind.org> | 2020-05-03 13:29:30 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2020-05-03 13:29:30 +0200 |
commit | dc023ffb94700519374f2ef705c52d1ca5143c7f (patch) | |
tree | f6ae0bcb569c5a8d3dfe4bef13547b9693bde948 | |
parent | 78c494c6240d5a76b99853ad4d8ab6b9df3b8884 (diff) |
listen on * by default
-rw-r--r-- | index.pl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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, }, |