How To Configure SELinux For Web Servers
SELinux blocks basic web server features by default, this is how you allow them
SELinux is good at not allowing anything to happen on a system unless it is authorized. Here are a few handy commands that help me get a new web server up and running, and allowing its websites to send emails.
Web Servers
chcon -Rv --user system_u --type httpd_sys_content_t /var/www/html/folder/or/file
chcon -R -t httpd_sys_rw_content_t /var/www/html/folder/or/file
Postfix Mail Server
To allow HTTPd to send mail via Postfix, there is a SELinux boolean to set.
getsebool httpd_can_sendmail
setsebool -P httpd_can_sendmail 1
restorecon -v /etc/postfix/main.cf
postfix set-permissions