自用Nginx配置文件

windows python nginx web.py html

配置文件 python

#user  nobody;
worker_processes  1;

error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

pid        logs/nginx.pid;


events {
    worker_connections  100;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  logs/access.log;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    server {
        listen       80;
        server_name  localhost;
		
		charset utf-8;  
		
		root E:/Open_Src/www/nginx/;

        index  index.html index.htm;

        error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

		location /static/ {
			if (-f $request_filename) {
				rewrite ^/static/(.*)$  /static/$1 break;
			}
		}
		
		location /blockly {
            alias   E:/Open_Src/www/blockly/;
            index  index.html index.htm;
        }
		
		
        # pass the Python scripts to flup server listening on 127.0.0.1:9000
        #
        location / {
            # 指定 fastcgi 的主機和端口
            fastcgi_pass 127.0.0.1:9001;
            fastcgi_param PATH_INFO $fastcgi_script_name;
            fastcgi_param REQUEST_METHOD $request_method;
            fastcgi_param QUERY_STRING $query_string;
            fastcgi_param CONTENT_TYPE $content_type;
            fastcgi_param CONTENT_LENGTH $content_length;
            fastcgi_param SERVER_PROTOCOL $server_protocol;
            fastcgi_param SERVER_PORT $server_port;
            fastcgi_param SERVER_NAME $server_name;
            fastcgi_pass_header Authorization;
            fastcgi_intercept_errors off;
        }
    }

}
須要 python、flup 、webpy、nginx

運行test.py 9001 fastcgi  ----------- webpy nginx

django web

python manage.py runfcgi method=threaded host=127.0.0.1 port=9001
相關文章
相關標籤/搜索