Displaying 3 results from an estimated 3 matches for "server_token".
Did you mean:
  server_tokens
  
2012 Dec 06
2
pasenger does not start puppet master under nginx
...''$status $body_bytes_sent "$http_referer" ''
                          ''"$http_user_agent" "$http_x_forwarded_for"'';
        access_log  logs/access.log  main;
        sendfile        on;
        #tcp_nopush     on;
        server_tokens off;
        #keepalive_timeout  0;
        keepalive_timeout  120;
        gzip  on;
        gzip_http_version 1.1;
        gzip_disable "msie6";
        gzip_vary on;
        gzip_min_length 1100;
        gzip_buffers 64 8k;
        gzip_comp_level 3;
        gzip_proxied any;...
2010 Jun 23
2
Purpose of "Status" header in HTTP responses?
Hi folks
On line #63 of unicorn/http_response.rb a "Status" header is written to the
socket. A comment in the code explains that some broken clients require this 
header and unicorn generously accommodates them.
We?re having the opposite problem. One of our clients using Microsoft Windows
and ASP haven?t been able to connect to our HTTP API since we moved it to 
unicorn from passenger.
2011 Jul 08
2
Puppetmaster setup with separate CA server configuration help
..."$http_referer" ''
                      ''"$http_user_agent" "$http_x_forwarded_for"'';
    access_log  logs/access.log  main;
    sendfile        on;
    # These are good default values.
    tcp_nopush      on;
    tcp_nodelay     off;
    server_tokens   off;
    keepalive_timeout  65;
   server {
        listen 192.168.122.17:8140;
        server_name  primaryca;
        root /etc/puppet/puppetmaster/public;
        passenger_enabled on;
        passenger_use_global_queue on;
        rails_env production;
        ssl on;
        ssl_session_t...