HostBill enterprise: HTTP 403 after reboot
If you’ve experienced HTTP 403 shortly after install and server reboot, it may be a selinux policy that is blocking you. To confirm you may want to temporarily disable selinux by using command in server terminal:
setenforce 0
if it helped, you can permanently solve this by one of following:
Add selinux booleans using commands:
chcon -R -t httpd_sys_rw_content_t /home/hostbill setsebool -P httpd_read_user_content true setsebool -P httpd_can_network_connect true
Disable selinux permanently
Open the SELinux configuration file:
/etc/selinux/config
.Locate the following line:
SELINUX=enforcing
Change the value to disabled:
Reboot for changes to apply
Â
Â