A SELinux module for NGINX to write/delete files.
Check your machine by
getenforceIf you got "Permissive" or nothing, it means your SELinux has been disabled or uninstalled.
If SELinux has been install on your machine, follow these step to unblock the limit to access files in web directory for NGINX.
- Login as
root, and clone the repository, then type:
checkmodule -M -m -o se_nginx.mod se_nginx.te
semodule_package -o se_nginx.pp -m se_nginx.mod
semodule -i se_nginx.pp-
Check your NGINX can write and delete files to web directory on the SELinux machine which enabled
-
If your NGINX still could not access any files, login as
rootand go to your web directory, type:
chcon -R -t httpd_sys_content_t *Enjoy to use ;)