Hi!
I have many Apache 2.2 virtual hosts with the same configuration:
I get errors when trying to run the same configuration on Apache 2.4:
Unfortunately the apache24 port can not be compiled with support MPM_ITK.
Help solve the problem.
I have many Apache 2.2 virtual hosts with the same configuration:
Code:
<VirtualHost *:80>
ServerAdmin webmaster@site.com
ServerName site.com
ServerAlias www.site.com
DocumentRoot /home/site.com/htdocs/
ErrorLog /home/site.com/logs/error.log
CustomLog /home/site.com/logs/access.log common
AssignUserID site.com ftp
<Directory /home/site.com/htdocs/>
DirectoryIndex index.html index.htm index.php
Options Includes FollowSymLinks SymLinksIfOwnerMatch
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
Code:
Performing sanity check on apache24 configuration:
AH00526: Syntax error on line 8 of /usr/local/etc/apache24/Includes/site.com.conf:
Invalid command 'AssignUserID', perhaps misspelled or defined by a module not included in the server configuration
Help solve the problem.