diff options
| author | anon | 2025-08-20 23:17:32 +0200 |
|---|---|---|
| committer | anon | 2025-08-20 23:17:32 +0200 |
| commit | 44b0e7d9a131f203e1d103af21d240f346b9a418 (patch) | |
| tree | 623cb3e3a7351486e852f72e81efee00faff0775 /gorillanest.pl.fcgi | |
| parent | 15bb3d5b02dd99c1c4784cee63f0c81d9547e00f (diff) | |
| download | gorillanest-44b0e7d9a131f203e1d103af21d240f346b9a418.tar.xz gorillanest-44b0e7d9a131f203e1d103af21d240f346b9a418.tar.zst | |
dont waste my time
Diffstat (limited to 'gorillanest.pl.fcgi')
| -rwxr-xr-x | gorillanest.pl.fcgi | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gorillanest.pl.fcgi b/gorillanest.pl.fcgi new file mode 100755 index 0000000..f4c0687 --- /dev/null +++ b/gorillanest.pl.fcgi @@ -0,0 +1,19 @@ +#!/usr/bin/env perl + +use strict; +use warnings; + +use Syntax::Keyword::Try; +use FCGI; + +require "gorillanest.pl.cgi"; + +our $request = FCGI::Request(); + +try { + while($request->Accept() >= 0) { + master(); + } +} catch ($error) { + info("Crashed: $error"); +} |
