Really like that? With www.example.com as the virtualhost?
> and finally: myapp.wsgi as written in the guide is in
> the /usr/local/www/wsgi-scripts/ folder.
Your configuration above is referring to ante.wsgi.
> However, when i do: http://localhost/myapp i get:
> *********************************
> object not found!
Is your virtualhost for localhost or www.example.com? What about ante vs
myapp?
> when i do: http://localhost/usr/local/www/wsgi-scripts/myapp.wsgi
> i get the code on the screen....
That would be if access is allowed everywhere on the system in Apache
config, and you have not specified any specific handler for that path, so
it gets handled as any file.
Please first double check your configuration, since the config you posted
and the tests you listed you did conflict with each other a lot.
And what is particularly interesting is the server signature:
Apache/2.2.21 (Win32). Are you on Windows environment? Then all those
/usr/ paths seem weird in the least as that's typical file hierarchy in
Unix based systems, while Windows uses drive letters...
The server encountered an internal error and was unable to complete your request. Either the server is overloaded or there was an error in a CGI script.
If you think this is a server error, please contact the webmaster.
So did you eventually actually look in the Apache error log file where
it would have given the error message indicating that was the case?
It is the Apache error log where you will see tracebacks and
additional detail to explain what may have caused Apache to serve up a
specific error page.
Graham