使用nginx后面的expressjs设置响应头

时间:2013-01-01 14:06:31

标签: node.js nginx express locomotivejs

我们使用节点js(express js)构建了一个Web应用程序,它位于nginx之后。

对于特定的API,我们希望将内容类型响应标头设置为“text / plain”。对于以下代码,控制器中有代码。

res.setHeader('Content-Type','text / plain'); res.send(响应);

当服务器不在nginx后面时,这是有效的。 但是当服务器落后于nginx时,响应头仍然是'application / json'

我的nginx配置如下:

#kZyguser www-data;
user root;
worker_processes 4;
pid /var/run/nginx.pid;

events {
        worker_connections 20000;
        # multi_accept on;
}

http {

        ##
        # Basic Settings
        ##

        sendfile on;
        tcp_nopush on;
        tcp_nodelay on;
        keepalive_timeout 65;
        types_hash_max_size 2048;
        # server_tokens off;

        # server_names_hash_bucket_size 64;
        # server_name_in_redirect off;

        include /etc/nginx/mime.types;
        default_type application/octet-stream;

        ##
        # Logging Settings
        ##
        access_log /var/log/nginx/access.log;
        error_log /var/log/nginx/error.log;

        ##
        # Gzip Settings
        ##

        gzip on;
        gzip_disable "msie6";

        # gzip_vary on;
        # gzip_proxied any;
        # gzip_comp_level 6;
        # gzip_buffers 16 8k;
        # gzip_http_version 1.1;

         gzip_types text/plain text/css application/x-javascript text/xml application/xml application/xml+rss text/javascript;



        client_max_body_size '10M';
 ##
        # nginx-naxsi config
        ##
        # Uncomment it if you installed nginx-naxsi
        ##

        #include /etc/nginx/naxsi_core.rules;

        ##
        # nginx-passenger config
        ##
        # Uncomment it if you installed nginx-passenger
        ##

        #passenger_root /usr;
        #passenger_ruby /usr/bin/ruby;

        ##
        # Virtual Host Configs
        ##

        include /etc/nginx/conf.d/*.conf;
        include /etc/nginx/sites-enabled/*;

       server{
             location / {
              proxy_pass_header text-plain; 
                        }
             }
}

2 个答案:

答案 0 :(得分:0)

您是否尝试在nginx中使用proxy_pass_header?

proxy_pass_header Content-Type;

http://wiki.nginx.org/HttpProxyModule

答案 1 :(得分:0)

Nginx配置没问题。但是你仍然无法解决这个问题,因为nginx根据你对控制器的响应来定义MIME类型,所以请在发送响应之前序列化你的json数据。示例

res.setHeader('Content-Type', 'text/plain'); res.send(response);
res.send(JSON.stringify(result));

现在你的响应标题将变成'text / plain'。它适用于我。