summaryrefslogtreecommitdiff
path: root/index.pl
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2018-12-30 13:40:38 +0100
committerDaniel Friesel <derf@finalrewind.org>2018-12-30 13:40:38 +0100
commite00fb0a18136ca8f4bf826952ce7a9b2328e10df (patch)
treea17f182060c58b8969d9e5e17cc1b152fb64f0a7 /index.pl
parentabace808bb7a12ccb5ea110a2a0399e808ab1ae1 (diff)
Bind to localhost 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 de7f708..01dd760 100644
--- a/index.pl
+++ b/index.pl
@@ -663,7 +663,7 @@ get '/:stop' => \&handle_request;
app->config(
hypnotoad => {
- listen => [ $ENV{VRRFAKEDISPLAY_LISTEN} // 'http://*:8091' ],
+ listen => [ $ENV{VRRFAKEDISPLAY_LISTEN} // 'http://127.0.0.1:8091' ],
pid_file => '/tmp/vrr-fakedisplay.pid',
workers => $ENV{VRRFAKEDISPLAY_WORKERS} // 2,
},