This is the output of /var/log/hiawatha/error.log
192.168.2.12|Thu 06 Jun 2013 12:39:02 +0200|/var/www/hiawatha/owncloud/index.php|CGI execution not allowed
192.168.2.12|Thu 06 Jun 2013 12:52:36 +0200|/var/www/hiawatha/owncloud/index.php|CGI execution not allowed
I have added a second VirtualHost and removed the IP in Binding. This doesn't change anything.
Here my 'new' config:
ServerId = www-data
ConnectionsTotal = 150
ConnectionsPerIP = 10
SystemLogfile = /var/log/hiawatha/system.log
GarbageLogfile = /var/log/hiawatha/garbage.log
Binding {
Port = 80
}
CGIhandler = /usr/bin/php-cgi:php
CGIextension = cgi
FastCGIserver {
FastCGIid = PHP5
ConnectTo = /var/run/php5-fpm.sock
# ConnectTo = 127.0.0.1:2005
Extension = php
}
UrlToolkit {
ToolkitID = ownCloud
Match ^/data DenyAccess
}
Hostname = 192.168.2.101
WebsiteRoot = /var/www/hiawatha
StartFile = index.html
AccessLogfile = /var/log/hiawatha/access.log
ErrorLogfile = /var/log/hiawatha/error.log
VirtualHost {
Hostname = raspi
WebsiteRoot = /var/www/hiawatha
StartFile = index.html
AccessLogfile = /var/log/hiawatha/access.log
ErrorLogfile = /var/log/hiawatha/error.log
}
VirtualHost {
Hostname = owncloud
WebsiteRoot = /var/www/hiawatha/owncloud
StartFile = index.html
AccessLogfile = /var/log/hiawatha/access.log
ErrorLogfile = /var/log/hiawatha/error.log
TimeForCGI = 5
UseFastCGI = PHP5
WebDAVapp = yes
ExecuteCGI = yes
UseToolkit = ownCloud
}
The output of the error.log is the same:
192.168.2.12|Wed 19 Jun 2013 10:47:08 +0200|/var/www/hiawatha/owncloud/index.php|CGI execution not allowed
Any further suggestions?