From 44b0e7d9a131f203e1d103af21d240f346b9a418 Mon Sep 17 00:00:00 2001 From: anon Date: Wed, 20 Aug 2025 23:17:32 +0200 Subject: dont waste my time --- gorillanest.pl.fcgi | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 gorillanest.pl.fcgi (limited to 'gorillanest.pl.fcgi') 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"); +} -- cgit v1.2.3