getting plain cgi scripts working with nginx setup

This commit is contained in:
Dan Buch
2011-01-03 17:18:06 -05:00
parent 50c240b0e1
commit 080b7ba992
7 changed files with 230 additions and 9 deletions

7
web/html/cgi-bin/test.cgi Executable file
View File

@@ -0,0 +1,7 @@
#!/usr/bin/env perl
printf("Content-Type: text/plain\n\n");
printf("Hello Test\n");
1;
__END__