initial commit
This commit is contained in:
commit
f3bff6e7ec
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
*.swp
|
||||
*.bak
|
12
script.pl
Executable file
12
script.pl
Executable 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
2
start.sh
Executable 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
|
Loading…
Reference in New Issue
Block a user