[go: up one dir, main page]

File: remote.PL

package info (click to toggle)
libfcgi 2.4.0-8.3
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,252 kB
  • ctags: 1,606
  • sloc: sh: 6,897; ansic: 4,800; java: 872; cpp: 290; makefile: 154; perl: 2
file content (36 lines) | stat: -rw-r--r-- 954 bytes parent folder | download | duplicates (26)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
use Config;

open OUT, ">remote.fpl";
print OUT "#!$Config{perlpath}\n";
print OUT while <DATA>;
close OUT;
chmod 0755, "remote.fpl";
__END__
# An example of using a remote script with an Apache webserver.
# Run this Perl program on "otherhost" to bind port 8888 and wait
# for FCGI requests from the webserver.

## Sample Apache configuration on the webserver to refer to the
## remote script on "otherhost"
# <IFModule mod_fastcgi.c>
#  AddHandler fastcgi-script fcgi
#  FastCgiExternalServer /path-to/cgi-bin/external.fcgi -host otherhost:8888
# </IfModule>

# Access the URL:  http://webserver/cgi-bin/external.fcgi

# Contributed by Don Bindner <dbindner@truman.edu>

use FCGI;

my $socket = FCGI::OpenSocket( ":8888", 5 );
my $request = FCGI::Request( \*STDIN, \*STDOUT, \*STDERR,
    \%ENV, $socket );

my $count;
while( $request->Accept() >= 0 ) {
    print "Content-type: text/html\r\n\r\n";
    print ++$count;
}

FCGI::CloseSocket( $socket );