0

I kept getting the following notice in apache log when I start apache http server 2.2:

SELinux policy enabled; httpd running as context unconfined_u:system_r:httpd_t:s0

even though I disabled selinux already. what's wrong?

user12145
  • 1,115
  • 6
  • 28
  • 47

1 Answers1

2

Yes the output of sestatus and probably /var/log/audit/audit.log help.

Also just want to add if httpd directory resides in a user home directory then this boolean need to be enabled.

setsebool -P httpd_read_user_content 1

Saidolim
  • 103
  • 4
Prashant Lakhera
  • 713
  • 2
  • 10
  • 25