forked from pool/haproxy
Marcus Rueckert
bdec498733
- include abstractions that give access to the openssl config, ssl certs and ssl keys - include local configs only with "if exists" so they do not have to exist. - move local files to %ghost OBS-URL: https://build.opensuse.org/package/show/server:http/haproxy?expand=0&rev=226
38 lines
921 B
Plaintext
38 lines
921 B
Plaintext
#include <tunables/global>
|
|
|
|
profile haproxy /usr/sbin/haproxy {
|
|
#include <abstractions/base>
|
|
#include <abstractions/openssl>
|
|
#include <abstractions/ssl_certs>
|
|
#include <abstractions/ssl_keys>
|
|
#include <abstractions/nameservice>
|
|
capability net_bind_service,
|
|
capability setgid,
|
|
capability setuid,
|
|
capability kill,
|
|
capability sys_resource,
|
|
capability sys_chroot,
|
|
|
|
# those are needed for the stats socket creation
|
|
capability chown,
|
|
capability fowner,
|
|
capability fsetid,
|
|
|
|
network inet tcp,
|
|
network inet6 tcp,
|
|
|
|
/etc/haproxy/* r,
|
|
|
|
/usr/sbin/haproxy rmix,
|
|
|
|
/var/lib/haproxy/stats rwl,
|
|
/var/lib/haproxy/stats.*.bak rwl,
|
|
/var/lib/haproxy/stats.*.tmp rwl,
|
|
/{,var/}run/haproxy.pid rw,
|
|
/{,var/}run/haproxy-master.sock* rwlk,
|
|
|
|
# Site-specific additions and overrides. See local/README for details.
|
|
#include if exists <local/haproxy>
|
|
#include if exists <local/usr.sbin.haproxy>
|
|
}
|