Nginx错误 - 启动nginx:nginx:emerg unknown“status”变量

时间:2016-06-28 08:43:49

标签: nginx

我尝试使用nginx做的是 - 调用后端进行身份验证,如果响应成功,我将重定向到网站1(例如-google.com),如果身份验证失败,我将重定向到website2(facebook例如)。

下面是我的nginx.conf -

user              nginx;                                                        
 worker_processes  1;                                                            

 error_log  /var/log/nginx/error.log;                                            
 pid        /var/run/nginx.pid;                                                  

 events {                                                                        
    worker_connections  1024;                                                   
 }                                                                               

http {                                                                          
    include       /etc/nginx/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  /var/log/nginx/access.log  main;                                

     sendfile        on;                                                         
     keepalive_timeout  65;                                                      

    # Load config files from the /etc/nginx/conf.d directory                    
    # The default server is in conf.d/default.conf                              
   include /etc/nginx/conf.d/default.conf;                                      
}  

default.conf文件如下 -

server {
    listen       80 default_server;
    server_name  _;

    #charset koi8-r;

    #access_log  logs/host.access.log  main;

    location / {
        # root   /usr/share/nginx/html;
        # index  index.html index.htm;

        proxy_set_header X-Real-IP  $remote_addr;
        proxy_set_header X-Forwarded-For $remote_addr;
        proxy_set_header Host $host;
        proxy_pass http://backend_ip_Address;


        set $my_var 0;
        if ($status = "200"){
            set $my_var 1;
        }

        #if($status = 4xx) {
         #  set $my_var  2;
        #}

        if ($my_var = 1){
             proxy_pass http://www.google.com;
        }

        if ($my_var = 2) {
            proxy_pass http://www.facebook.com;
        }
    }

    error_page  404              /404.html;
    location = /404.html {
        root   /usr/share/nginx/html;
    }

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

我面临的问题是当我尝试使用此配置执行sudo服务nginx重启时,我收到以下错误 - 启动nginx:nginx:[emerg] unknown“status”变量

nginx.conf日志配置中也存在相同的$ status,它正确记录响应代码,如301,200等。但是相同的状态变量在default.conf文件中不起作用。对我做错了什么的帮助?

我尝试用body_bytes_sent标头替换状态,这样可行。

通过Google搜索https://www.google.co.in/webhp?sourceid=chrome-instant&ion=1&espv=2&ie=UTF-8#q=nginx++unknown+%22status%22+variable,只有相关信息为https://www.drupal.org/node/2738983,但解决此问题的帮助不大。

1 个答案:

答案 0 :(得分:0)

状态变量是在非常晚的阶段定义的,在处理请求并且响应准备好发回之后。

您无法将其用于条件路由。

通常它用于记录。

在这里,您可以阅读有关nginx指令执行顺序和阶段的信息: https://openresty.org/download/agentzh-nginx-tutorials-en.html