After an upgrade from Ubuntu 13.04 to 13.10 I got the message "client denied
by server configuration".
The solution is here:
http://www.richardgreenwood.ca/2013/12/client-denied-by-server-configuration-error-after-upgrade-to-apache-2-4/

For web2py this means: change in /etc/apache2/sites-available the apache
config file:

------------------------

(1) In VirtualHost *:80 and in VirtualHost:443
<Directory /home/www-data/web2py>
...
    # add this line before /Directory:
    Require all granted
</Directory>

(2) In <Directory /home/www-data/web2py/applications/*/static/> do the same

(3) Replace
NameVirtualHost: *:80
NameVirtualHost: *:443
by
ServerName localhost

----------------------------

I think the script setup-web2py-ubuntu.sh should be changed.
I hope these lines could help somebody.

Regards Martin

-- 
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 [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to