diff options
Diffstat (limited to 'cgi')
-rw-r--r-- | cgi/index.pl | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cgi/index.pl b/cgi/index.pl index 6bf4586..9e131fb 100644 --- a/cgi/index.pl +++ b/cgi/index.pl @@ -299,6 +299,14 @@ get '/' => \&handle_request; get '/:city/:stop.png' => \&render_image; get '/:city/:stop' => \&handle_request; +app->config( + hypnotoad => { + accepts => 10, + listen => ['http://*:8091'], + pid_file => '/tmp/vrr-fake.pid', + }, +); + app->start(); __DATA__ |