]> git.pld-linux.org Git - packages/nginx.git/blobdiff - nginx-perl.conf
- +#include <limits.h> /* IOV_MAX */
[packages/nginx.git] / nginx-perl.conf
index 5ae286812e4b2598d1cc631b76da7218cec1668c..88f7c5776e4fb56aa173863b93f0aaef52529269 100644 (file)
@@ -27,6 +27,22 @@ http {
        limit_zone      test-limit      $binary_remote_addr     10m;
        #gzip   on;
 
+#      perl_modules    perl/lib;
+#      perl_require    /home/services/nginx/cgi-bin/example-hello-01.pm;
+       
+       perl_set  $msie6  '
+       sub {
+               my $r = shift;
+               my $ua = $r->header_in("User-Agent");
+               return "" if $ua =~ /Opera/;
+               return "1" if $ua =~ / MSIE [6-9]\.\d+/;
+               return "";
+       }
+       ';
+
+       #       For more visit
+       #       http://wiki.codemongers.com/NginxEmbeddedPerlModule
+
        server {
                listen          80;
                server_name     localhost;
@@ -34,13 +50,34 @@ http {
                client_max_body_size    10M;
 
                location / {
-                       autoindex       on;
-                       root    /home/services/nginx/html;
-                       index   index.html index.htm index.php;
+                       perl    example-hello-01::handler;
                        limit_conn      test-limit      15;
                }
 
 
+               location ~ ^/cgi-bin/.*\.cgi$ {
+                       fastcgi_pass    unix:/var/run/nginx-perl_cgi.sock;
+                       fastcgi_index   index.cgi;
+                       fastcgi_param   SCRIPT_FILENAME /home/services/nginx/$fastcgi_script_name;
+                       fastcgi_param   QUERY_STRING    $query_string;
+                       fastcgi_param   REQUEST_METHOD  $request_method;
+                       fastcgi_param   CONTENT_TYPE    $content_type;
+                       fastcgi_param   CONTENT_LENGTH  $content_length;
+                       fastcgi_param   GATEWAY_INTERFACE       CGI/1.1;
+                       fastcgi_param   SERVER_SOFTWARE nginx;
+                       fastcgi_param   SCRIPT_NAME     $fastcgi_script_name;
+                       fastcgi_param   REQUEST_URI     $request_uri;
+                       fastcgi_param   DOCUMENT_URI    $document_uri;
+                       fastcgi_param   DOCUMENT_ROOT   $document_root;
+                       fastcgi_param   SERVER_PROTOCOL $server_protocol;
+                       fastcgi_param   REMOTE_ADDR     $remote_addr;
+                       fastcgi_param   REMOTE_PORT     $remote_port;
+                       fastcgi_param   SERVER_ADDR     $server_addr;
+                       fastcgi_param   SERVER_PORT     $server_port;
+                       fastcgi_param   SERVER_NAME     $server_name;
+                       fastcgi_read_timeout    5m;
+               }
+
 #              location /nginx_status {
 #                      stub_status     on;
 #                      access_log      off;
@@ -57,13 +94,6 @@ http {
 #                      root    /home/services/http/error-pages;
 #              }
 
-#              location ~ \.php$ {
-#                      include         /etc/nginx/fastcgi.params;
-#                      fastcgi_pass    127.0.0.1:1026;
-#                      fastcgi_index   index.php;
-#                      fastcgi_param   SCRIPT_FILENAME /home/services/nginx/html$fastcgi_script_name;
-#              }
-
        }
 
 }
This page took 0.09326 seconds and 4 git commands to generate.