initial commit

This commit is contained in:
Aki Kareha 2025-02-25 03:07:59 +09:00
commit f3bff6e7ec
No known key found for this signature in database
GPG Key ID: 53C60D74F1899BF0
5 changed files with 22 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
*.swp
*.bak

3
format.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
perltidy -b script.pl
rm *.bak

12
script.pl Executable file
View File

@ -0,0 +1,12 @@
#!/usr/bin/perl
use strict;
use warnings;
use CGI::Fast;
while ( my $q = CGI::Fast->new ) {
my $client_ip = $q->http('X-Forwarded-For') || $q->remote_addr || 'unknown';
print $q->header("text/plain; charset=utf-8");
print "$client_ip\n";
}

2
start.sh Executable file
View File

@ -0,0 +1,2 @@
#!/bin/sh
spawn-fcgi -s /var/run/app-ip.sock -P /var/run/app-ip.pid -U www-data -G www-data ./script.pl

3
stop.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/sh
kill "$(cat /var/run/app-ip.pid)"
rm /var/run/app-ip.pid