Edgewall Software

Changes between Version 64 and Version 65 of TracFastCgi


Ignore:
Timestamp:
Jan 26, 2011, 10:28:30 PM (13 years ago)
Author:
mzrinsky@…
Comment:

Adding info from ticket:9261 (thank you for bringing it up kejinlu, I didn't notice till things were breaking ;)

Legend:

Unmodified
Added
Removed
Modified
  • TracFastCgi

    v64 v65  
    403403            fastcgi_param  SERVER_PORT        $server_port;
    404404            fastcgi_param  SERVER_PROTOCOL    $server_protocol;
    405             fastcgi_param  QUERY_STRING     $query_string;
     405            fastcgi_param  QUERY_STRING       $query_string;
    406406
    407407            # for authentication to work
    408408            fastcgi_param  AUTH_USER          $remote_user;
    409409            fastcgi_param  REMOTE_USER        $remote_user;
     410
     411            # for ip to work
     412            fastcgi_param REMOTE_ADDR         $remote_addr;
     413
     414            # For attchments to work
     415            fastcgi_param    CONTENT_TYPE     $content_type;
     416            fastcgi_param    CONTENT_LENGTH   $content_length;
    410417        }
    411418    }