找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 33|回复: 3

反向代理的问题

[复制链接]

92

主题

233

回帖

782

积分

高级会员

积分
782
发表于 2012-12-27 11:09:56 | 显示全部楼层 |阅读模式
想要反向代理一个被Q了的网站,可是代理了以后还是被Q。下面的设置哪里出了问题了。
user  www www;

worker_processes 1;

error_log  /home/wwwlogs/nginx_error.log  crit;

pid        /usr/local/nginx/logs/nginx.pid;

#Specifies the value for maximum file descriptors that can be opened by this process.
worker_rlimit_nofile 51200;

events
        {
                use epoll;
                worker_connections 51200;
        }

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

                server_names_hash_bucket_size 128;
                client_header_buffer_size 32k;
                large_client_header_buffers 4 32k;
                client_max_body_size 50m;

                sendfile on;
                tcp_nopush     on;

                keepalive_timeout 60;

                tcp_nodelay on;

                fastcgi_connect_timeout 300;
                fastcgi_send_timeout 300;
                fastcgi_read_timeout 300;
                fastcgi_buffer_size 64k;
                fastcgi_buffers 4 64k;
                fastcgi_busy_buffers_size 128k;
                fastcgi_temp_file_write_size 256k;

                gzip on;
                gzip_min_length  1k;
                gzip_buffers     4 16k;
                gzip_http_version 1.0;
                gzip_comp_level 2;
                gzip_types       text/plain application/x-javascript text/css application/xml;
                gzip_vary on;

                #limit_zone  crawler  $binary_remote_addr  10m;
                server    {
        listen          80;
        server_name     a.com;

        location / {
            proxy_pass              http://b.com;
            proxy_redirect          off;
            proxy_set_header        X-Real-IP       $remote_addr;
            proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;
            }
    }

server
        {
                listen       80;
                server_name 163.com;
                index index.html index.htm index.php;
                root  /home/wwwroot;

                location ~ .*\.(php|php5)?$
                        {
                                fastcgi_pass  unix:/tmp/php-cgi.sock;
                                fastcgi_index index.php;
                                include fcgi.conf;
                        }

                location /status {
                        stub_status on;
                        access_log   off;
                }

                location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
                        {
                                expires      30d;
                        }

                location ~ .*\.(js|css)?$
                        {
                                expires      12h;
                        }

                log_format  access  '$remote_addr - $remote_user [$time_local] "$request" '
             '$status $body_bytes_sent "$http_referer" '
             '"$http_user_agent" $http_x_forwarded_for';
                access_log  /home/wwwlogs/access.log  access;
        }
include vhost/*.conf;
}

回复

使用道具 举报

163

主题

3250

回帖

7037

积分

论坛元老

积分
7037
发表于 2012-12-27 11:10:53 | 显示全部楼层
url结构被Q了
回复

使用道具 举报

21

主题

824

回帖

1741

积分

金牌会员

积分
1741
发表于 2012-12-27 11:12:41 | 显示全部楼层
楼下来,我也想知道
回复

使用道具 举报

92

主题

233

回帖

782

积分

高级会员

积分
782
 楼主| 发表于 2012-12-27 14:38:26 | 显示全部楼层
看来真是不能早上发帖,沉得真快。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|小黑屋|Discuz! X

GMT+8, 2025-1-11 17:51 , Processed in 0.018329 second(s), 3 queries , Gzip On, Redis On.

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表