博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nginx + django 两种配置模式
阅读量:6834 次
发布时间:2019-06-26

本文共 1881 字,大约阅读时间需要 6 分钟。

  hot3.png

1 prefork方式
server {
    listen 80;
    server_name test.tmdxy.org;
    access_log    /var/log/httpd/access.log main;
    location / {
            # host and port to fastcgi server
            fastcgi_pass unix:/tmp/test_tmdxy.sock;
            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_pass_header Authorization;
            fastcgi_param REMOTE_ADDR           $remote_addr;
            fastcgi_param SERVER_PROTOCOL       $server_protocol;
            fastcgi_param SERVER_PORT           $server_port;
            fastcgi_param SERVER_NAME           $server_name;
            fastcgi_intercept_errors off;
        }
    location ^~ /media/ {
        alias    /home/www/django/test_tmdxy_org/meida/;
    }
    location ~* ^.+\.(gif|png|jpg|jpeg|css|swf|htm|html|asp|php|jsp|js|doc|txt)$ {
        root    /home/www/django/test_tmdxy_org/media/;
        access_log   off;
    }
}
2 threaded方式
server {
    listen 80;
    server_name test.tmdxy.org;
    access_log    /var/log/httpd/access.log main;
    location / {
            # host and port to fastcgi server
            fastcgi_pass 127.0.0.1:3033;
            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_pass_header Authorization;
            fastcgi_param REMOTE_ADDR           $remote_addr;
            fastcgi_param SERVER_PROTOCOL       $server_protocol;
            fastcgi_param SERVER_PORT           $server_port;
            fastcgi_param SERVER_NAME           $server_name;
            fastcgi_intercept_errors off;
        }
    location ^~ /media/ {
        alias    /home/www/django/test_tmdxy_org/meida/;
    }
    location ~* ^.+\.(gif|png|jpg|jpeg|css|swf|htm|html|asp|php|jsp|js|doc|txt)$ {
        root    /home/www/django/test_tmdxy_org/media/;
        access_log   off;
    }
}
3.配置反向代理服务器 
只需在server {}里加入
location /go/ {
    proxy_pass http://192.168.1.5:8088/; 
    proxy_redirect http://192.168.1.5:8088/ /;
}

转载于:https://my.oschina.net/ilyaw/blog/37063

你可能感兴趣的文章
Struts知识问答
查看>>
C# 中符号的作用[备忘]
查看>>
关于preempt_enable 和 preempt_disable 【转】
查看>>
[SDK2.2]Windows Azure Virtual Network (1) 概念
查看>>
SQLAlchemy 与 fask-SQLAlchemy 中的多表查询例子
查看>>
JS 获取图片原始尺寸-防止图片溢出
查看>>
Java反射
查看>>
Codeforce 712A Memory and Crow
查看>>
Keil代码中for循环延时问题
查看>>
JAX-RS(基于Jersey) + Spring 4.x + MyBatis构建REST服务架构
查看>>
ArcGIS制图之Subset工具点抽稀
查看>>
很好看的后台管理界面
查看>>
Maven 使用Eclipse构建Web项目
查看>>
用户密码加密存储十问十答,一文说透密码安全存储
查看>>
IL指令详细
查看>>
parted空闲空间添加分区
查看>>
Nginx 作为反向代理优化要点proxy_buffering
查看>>
折腾大半年,西部数据终于收购了东芝半导体业务
查看>>
http长连接和短连接
查看>>
送上最新鲜的互联网行业新闻-【2015-05-12】
查看>>