On 14 March 2011 15:54, diverman <[email protected]> wrote: > Hi, > > I'm running apache 2.2.3 and mod_wsgi in daemon mode. Sometimes I get > in access_log some path (as requested from browser), but application > in environ receives completely different PATH_INFO (which is also > valid in this app). There aren't any other modules or rewrite rules. > > Configuration: > > <VirtualHost ...> > WSGIDaemonProcess example display-name=%{GROUP} user=example > group=example processes=4 > threads=1 > WSGIProcessGroup example > WSGIScriptAlias / /some/path/example.wsgi > </VirtualHost> > > Do you have any idea, what could it be?
Can you provide actual examples of how it appears in access log and what SCRIPT_NAME and PATH_INFO are from application. If you replace WSGI application with simple test application such as: http://code.google.com/p/modwsgi/wiki/DebuggingTechniques#Displaying_Request_Environment Does it still happen. Ie., verify that in no way related to your specific web application. Graham -- You received this message because you are subscribed to the Google Groups "modwsgi" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/modwsgi?hl=en.
