Hello.

I've installed web2py with Apache 2.4 and mod_wsgi in a RedHat distribution.
When I try to conect /admin system rease error 
[Errno 13] Permission denied: 
'/var/lib/web2py/applications/admin/private/hosts.deny'
The hosts file have all permissions

Thanks


Virtual Host conf

<VirtualHost *:443 >
...
  WSGIDaemonProcess web2py user=apache group=apache display-name=%{GROUP}

  WSGIProcessGroup web2py

  WSGIScriptAlias / /var/lib/web2py/wsgihandler.py

  <Directory /var/lib/web2py>
    AllowOverride None
    Require all granted
    <Files wsgihandler.py>
      Require all granted
    </Files>
  </Directory>

  AliasMatch ^/([^/]+)/static/(?:_[\d]+.[\d]+.[\d]+/)?(.*)         
/var/lib/web2py/applications/$1/static/$2

  <Directory /var/lib/web2py/applications/*/static/>
    Require all granted
  </Directory>
...
</VirtualHost>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to