All pastes #2122965 Raw Edit

Untitled

public text v1 · immutable
#2122965 ·published 2012-02-29 18:38 UTC
rendered paste body
        upstream se-fcgi {
                ip_hash;
                server 192.168.0.22:9001 weight=200;
                server 192.168.0.32:9001 weight=10;
                server 192.168.0.42:9001 weight=10;
                server 192.168.0.52:9001 backup;
                server 192.168.0.72:9001 backup;
                server 192.168.0.102:9001 weight=1;
                server 192.168.0.112:9001 weight=1;
        }

        location ~ \.php$ {
            try_files $uri =404;
            set $path_info      "";
            if ($uri ~ "^(.*?)$") {
                set     $path_info      $1;
            }
            root   /usr/nfs/disk3/scaleengine;
            fastcgi_pass   se-fcgi;
            fastcgi_index  ocrm.php;
            fastcgi_param  SCRIPT_FILENAME  /usr/nfs/disk3/scaleengine$fastcgi_script_name;
            include        fastcgi_ssl.conf;
            fastcgi_param      PATH_INFO       $path_info;
        }