diff options
author | Daniel Friesel <derf@finalrewind.org> | 2018-12-30 13:40:38 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2018-12-30 13:40:38 +0100 |
commit | e00fb0a18136ca8f4bf826952ce7a9b2328e10df (patch) | |
tree | a17f182060c58b8969d9e5e17cc1b152fb64f0a7 | |
parent | abace808bb7a12ccb5ea110a2a0399e808ab1ae1 (diff) |
Bind to localhost by default
-rw-r--r-- | index.pl | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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, }, |