hello eveyone, im trying to run the basic wsgi application but i tried to follow the quick configuration guide, but my apache server (on mac osx) keeps deploying an error in the log file:
[Tue Mar 26 16:12:19 2013] [error] [client ::1] Negotiation: discovered file(s) matching request: /Users/tiago/Sites/test/wsgi-scripts/myapp.wsgi (None could be negotiated). when ever i try to write in the browser: http://localhost/~tiago/test/wsgi-scripts/myapp.wsgi or http://localhost/~tiago/test/myapp i get: Not Found The requested URL /~tiago/test/wsgi-scripts/myapp.wsgi was not found on this server. my vhosts conf is this one: <VirtualHost *:80> ServerName test.com ServerAlias www.test.com ServerAdmin [email protected] DocumentRoot /Users/tiago/Sites/test ErrorLog /private/var/log/apache2/test.com-error_log CustomLog /private/var/log/apache2/test.com-access_log common WSGIScriptAlias /myapp /Users/tiago/Sites/test/wsgi-scripts/main.wsgi <Directory /Users/tiago/Sites/test/wsgi-scripts> Options Indexes FollowSymLinks MultiViews ExecCGI AddHandler wsgi-script .wsgi .py AllowOverride None Order allow,deny Allow from all </Directory> # Set access permission <Directory /> Allow from all </Directory> </VirtualHost> the wsgi module is being loaded by the server, so i don't know what might be wrong, can anyone help me on whats going on? im running out of solutions. Best Regards -- You received this message because you are subscribed to the Google Groups "modwsgi" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/modwsgi?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
