14 lines
273 B
Plaintext
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;
|