Files
motus_remote/nginx/selinux/nginx.te
2021-12-30 15:34:27 +00:00

14 lines
273 B
Plaintext

module nginx 1.0;
require {
type initrc_t;
type httpd_t;
type var_run_t;
class sock_file write;
class unix_stream_socket connectto;
}
#============= httpd_t ==============
allow httpd_t initrc_t:unix_stream_socket connectto;
allow httpd_t var_run_t:sock_file write;