You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
600 B
19 lines
600 B
4 years ago
|
module onlyoffice_docserver 1.0;
|
||
|
|
||
|
require {
|
||
|
type httpd_sys_content_t;
|
||
|
type amqp_port_t;
|
||
|
type mysqld_port_t;
|
||
|
type init_t;
|
||
|
class file { execute execute_no_trans getattr map open read };
|
||
|
class process execmem;
|
||
|
class tcp_socket name_connect;
|
||
|
}
|
||
|
|
||
|
#============= init_t ==============
|
||
|
allow init_t amqp_port_t:tcp_socket name_connect;
|
||
|
allow init_t mysqld_port_t:tcp_socket name_connect;
|
||
|
allow init_t httpd_sys_content_t:file map;
|
||
|
allow init_t httpd_sys_content_t:file { execute execute_no_trans getattr open read };
|
||
|
allow init_t self:process execmem;
|