NameVirtualHost *:80
to enable name based virtual hosts on port 80.
Without that, all port 80 requests would go to first virtual host
found in order of processing Apache configuration.
If you provide a WSGIScriptAlias inside of VirtualHost it will be
specific to that virtual host and not server wide.
Graham
> --
> You received this message because you are subscribed to the Google Groups
> "modwsgi" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/modwsgi/-/9ZVBdZKfdbMJ.
> To post to this group, send email to mod...@googlegroups.com.
> To unsubscribe from this group, send email to
> modwsgi+u...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/modwsgi?hl=en.
>
XXX
on line immediately after NameVirtualHost.
The run:
apachectl -t
which will validate configuration. It should complain.
If you were to restart Apache it should fail to start.
Also replace your WSGI script file with tests scripts to verify
whether daemon process group being used and what interpreter.Post
results.
http://code.google.com/p/modwsgi/wiki/CheckingYourInstallation#Embedded_Or_Daemon_Mode
http://code.google.com/p/modwsgi/wiki/CheckingYourInstallation#Sub_Interpreter_Being_Used
Graham