Hallo zusammen,
vielleicht kann mir jemand helfen. Obwohl ich die Installationsanleitung zehnmal gelesen habe, klappt die Konfiguration
mit fastgci einfach nicht:
Das System wurde auf einer virtuellen Maschine unter Ubuntu 14.04 installiert.
unter /localhost/kivitendo-erp-fcgid erscheint nur
The requested URL /kivitendo-erp-fcgid was not found on this server.
cat /etc/apache2/apache2.conf
{
ServerRoot "/etc/apache2"
Mutex file:${APACHE_LOCK_DIR} default
PidFile ${APACHE_PID_FILE}
Timeout 300
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 5
User ${APACHE_RUN_USER}
Group ${APACHE_RUN_GROUP}
HostnameLookups Off
ErrorLog ${APACHE_LOG_DIR}/error.log
LogLevel warn
Include module configuration:
IncludeOptional mods-enabled/.load
IncludeOptional mods-enabled/.conf
Include list of ports to listen on
Include ports.conf
Options FollowSymLinks
AllowOverride None
Require all granted
AllowOverride None
Require all granted
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
ServerRoot "/etc/apache2"
DocumentRoot "/var/www/kivitendo-erp"
AccessFileName: The name of the file to look for in each directory
for additional configuration directives. See also the AllowOverride
directive.
AccessFileName .htaccess
The following lines prevent .htaccess and .htpasswd files from being
viewed by Web clients.
Require all denied
LogFormat "%v:%p %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined
LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %O" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent
Include of directories ignores editors' and dpkg's backup files,
see README.Debian for details.
Include generic snippets of statements
IncludeOptional conf-enabled/*.conf
Include the virtual host configurations:
IncludeOptional sites-enabled/*.conf
vim: syntax=apache ts=4 sw=4 sts=4 sr noet
ServerRoot "/etc/apache2"
ServerName localhost
DocumentRoot "/var/www/kivitendo-erp"
....Konfiguration mit CGI
AddHandler cgi-script .pl
Alias /kivitendo-erp/ /var/www/kivitendo-erp/
Options ExecCGI Includes FollowSymlinks
Require all granted
Order Deny,Allow
Deny from All
Require all granted
....Konfiguration mit FCGI
AddHandler cgi-script .pl
AddHandler fcgid-script .fpl
Alias /kivitendo-erp/ /var/www/kivitendo-erp/
LoadModule fastcgi_module /usr/lib/apache2/modules/mod_fastcgi.so
AliasMatch ^/localhost/kivitendo-erp-fcgid/[^/]+.pl /var/www/kivitendo-erp/dispatcher.fpl
Alias /localhost/kivitendo-erp-fcgid/ /var/www/kivitendo-erp/
FcgidMaxRequestLen 10485760
AllowOverride All
Options ExecCGI Includes FollowSymlinks
Order Allow,Deny
Allow from All
Require all granted
Order Deny,Allow
Deny from All
Require all granted
}