secure_access_group=access and apache_nginx

zEitEr

Super Moderator
Joined
Apr 11, 2005
Messages
15,366
Location
www.poralix.com
Hello

I've set

Code:
secure_access_group=access

on CentOS 5 with nginx_apache on a board, and executed:

Code:
echo "action=rewrite&value=secure_access_group" >> /usr/local/directadmin/data/task.queue

User apache was not added into access group:

Code:
# grep access /etc/group
access:x:672:nginx

I had to add apache manually into the file:

Code:
# grep acces /etc/group
access:x:672:nginx,apache


Please check it and fix if required.
 
Thanks for the report.
The only user in the "access" group that is actually checked is "nginx", because the default add of "access" should have already had apache in it.
I've added an extra check for "apache" in the even either apache or the proxy is being used.

John
 
Back
Top