Edgewall Software

Changes between Version 74 and Version 75 of TracFastCgi


Ignore:
Timestamp:
Oct 26, 2011, 5:43:09 PM (13 years ago)
Author:
anatoly techtonik <techtonik@…>
Comment:

comment REMOTE_USER if not using web-server authentication (cause for the TH:#8545 in AccountManager)

Legend:

Unmodified
Added
Removed
Modified
  • TracFastCgi

    v74 v75  
    369369Nginx is able to communicate with FastCGI processes, but can not spawn them. So you need to start FastCGI server for Trac separately.
    370370
    371  1. Nginx configuration snippet - confirmed to work on 0.6.32
     371 1. Nginx configuration with basic authentication handled by Nginx - confirmed to work on 0.6.32
    372372{{{
    373373    server {
     
    423423            fastcgi_param  QUERY_STRING       $query_string;
    424424
    425             # for authentication to work
     425            # For Nginx authentication to work - do not forget to comment these
     426            # lines if not using Nginx for authentication
    426427            fastcgi_param  AUTH_USER          $remote_user;
    427428            fastcgi_param  REMOTE_USER        $remote_user;