Hello! Please give me a hand.
I am trying to do the configuration as described on: http://code.google.com/p/modwsgi/wiki/QuickConfigurationGuide I have installed python, mod_wsgi.so is in the modules folder, "LoadModule wsgi_module modules/mod_wsgi.so" is in the httpd.conf file. I have added : ******************************** <VirtualHost *:80> ServerName www.example.com ServerAlias example.com ServerAdmin [email protected] DocumentRoot /usr/local/www/documents <Directory /usr/local/www/documents> Order allow,deny Allow from all </Directory> WSGIScriptAlias /ante /usr/local/www/wsgi-scripts/ante.wsgi <Directory /usr/local/www/wsgi-scripts> Order allow,deny Allow from all </Directory> </VirtualHost> ********************************** in .conf file, and finally: myapp.wsgi as written in the guide is in the /usr/local/www/wsgi-scripts/ folder. However, when i do: http://localhost/myapp i get: ********************************* object not found! The requested URL was not found on this server. If you entered the URL manually please check your spelling and try again.If you think this is a server error, please contact the webmaster. Error 404localhost 10/22/12 15:17:23 Apache/2.2.21 (Win32) mod_ssl/2.2.21 OpenSSL/1.0.0e mod_wsgi/3.4 Python/3.2.3 PHP/5.3.8 mod_perl/2.0.4 Perl/v5.10.1 ********************** when i do: http://localhost/usr/local/www/wsgi-scripts/myapp.wsgi i get the code on the screen.... Please help me execute the hello world script, pleeease!!! Thank you in advance! -- 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/-/ARYDrJDrUSQJ. 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.
