Apache don't start after update

grafics

Verified User
Joined
Mar 25, 2018
Messages
14
Hi,

Apache don't start in webserver nginx_apache (or apache) after the update.
The error :
Code:
AH00526: Syntax error on line 18 of /etc/httpd/conf/extra/httpd-hostname.conf:
SuexecUserGroup cannot occur within directory context

I don't know where the problem is.
The file looks correct :
Code:
<Directory /var/www/html>
	Options +SymLinksIfOwnerMatch +IncludesNoExec -Indexes
	AllowOverride AuthConfig FileInfo Indexes Limit Options=Includes,IncludesNOEXEC,Indexes,ExecCGI,MultiViews,SymLinksIfOwnerMatch,None

	Require all granted
	<IfModule mod_suphp.c>
		suPHP_Engine On
		suPHP_UserGroup webapps webapps
	</IfModule>
	<IfModule mod_ruid2.c>
		RUidGid webapps webapps
	</IfModule>
	<IfModule mod_lsapi.c>
		lsapi_user_group webapps webapps
	</IfModule>
	<IfModule mod_fcgid.c>
		FcgidWrapper /usr/local/safe-bin/fcgid56.sh .php
	  SuexecUserGroup webapps webapps
		<FilesMatch "\.(inc|php|php3|php4|php44|php5|php52|php53|php54|php55|php56|php70|php71|php72|php6|phtml|phps)$">
			Options +ExecCGI
			AddHandler fcgid-script .php
		</FilesMatch>
	</IfModule>
	<IfModule mod_fcgid.c>
		FcgidWrapper /usr/local/safe-bin/fcgid70.sh .php70
		SuexecUserGroup webapps webapps
	 <FilesMatch "\.php70$">
			Options +ExecCGI
			AddHandler fcgid-script .php70
		</FilesMatch>
	</IfModule>
</Directory>
<Directory /var/www/html/phpMyAdmin/log>
	Require all denied
</Directory>

The line 18 : SuexecUserGroup webapps webapps


Thanks
 
We are very sorry for the appearance of this bug. It has been fixed in CustomBuild 2.0 rev. 1848. A quick-fix would be:
Code:
cd /usr/local/directadmin/custombuild
wget -O build http://custombuild.eu/build
./build apache


Thank you!
 
@Martynas

It seems a detection of a client IP does not work after upgrade with nginx+apache.

It seems the file /usr/local/directadmin/data/admin/ip.list is no more read:

Code:
RemoteIPInternalProxyList /usr/local/directadmin/data/admin/ip.list
 
Back
Top