Hi Guys,
I'm having no luck trying to set up web2py to run behind apache2 on SLES
10. Here is my configuration file which is
/etc/apache2/vhosts.d/yast2_vhosts.conf
/user/web2py is where web2py source is. and I set its ownership to
wwwrun:users as apache2 runs as wwwrun user.
WSGIPythonHome /root/mave/Python-2.7.3/python
<VirtualHost *>
DocumentRoot /srv/www/web2py/
VirtualDocumentRoot /srv/www/web2py/
ServerName NetMan
<Directory /srv/www/web2py/>
AllowOverride None
Order allow,deny
Allow from all
</Directory>
WSGIDaemonProcess web2py display-name=%{GROUP}
WSGIProcessGroup web2py
WSGIScriptAlias / /users/web2py/wsgihandler.py
<Directory /users/web2py>
AllowOverride None
Order Allow,Deny
Deny from all
<Files wsgihandler.py>
Allow from all
</Files>
</Directory>
AliasMatch ^/([^/]+)/static/(.*) \
/users/web2py/applications/$1/static/$2
<Directory /users/web2py/applications/*/static/>
Order Allow,Deny
Allow from all
</Directory>
<Location /admin>
Deny from all
</Location>
<LocationMatch ^/([^/]+)/appadmin>
Deny from all
</LocationMatch>
</VirtualHost>
The request basically times out waiting for a reply. Any logs I should look
at? Any help would be much appreciated.
Thanks,
mave
--