diff options
| -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 bb52308..96c93d7 100644 --- a/cgi/index.pl +++ b/cgi/index.pl @@ -93,6 +93,14 @@ get '/:station'       => \&handle_request;  get '/:station/:via'  => \&handle_request;  get '/multi/:station' => \&handle_request; +app->config( +	hypnotoad => { +		accepts => 10, +		listen => ['http://*:8092'], +		pid_file => '/tmp/db-fake.pid', +	}, +); +  app->start();  __DATA__ | 
