configs/apache: remove cpu limit and unnecessary is_bind

This commit is contained in:
Robert Swiecki 2017-07-07 19:11:56 +02:00
parent 6c71def056
commit 83cb1f2764

View File

@ -14,9 +14,9 @@ mode: ONCE
hostname: "APACHE-NSJ" hostname: "APACHE-NSJ"
rlimit_as: 1024 rlimit_as: 1024
rlimit_cpu: 1000
rlimit_fsize: 1024 rlimit_fsize: 1024
rlimit_nofile: 16 rlimit_cpu: -1
rlimit_nofile: 64
time_limit: 0 time_limit: 0
@ -66,13 +66,11 @@ mount {
dst: "/tmp" dst: "/tmp"
fstype: "tmpfs" fstype: "tmpfs"
rw: true rw: true
is_bind: false
} }
mount { mount {
dst: "/run/apache2" dst: "/run/apache2"
fstype: "tmpfs" fstype: "tmpfs"
rw: true rw: true
is_bind: false
} }
mount { mount {
src: "/dev/urandom" src: "/dev/urandom"
@ -84,7 +82,6 @@ mount {
dst: "/dev/shm" dst: "/dev/shm"
fstype: "tmpfs" fstype: "tmpfs"
rw: true rw: true
is_bind: false
} }
mount { mount {
dst: "/proc" dst: "/proc"
@ -109,13 +106,17 @@ mount {
src: "/var/www/html" src: "/var/www/html"
dst: "/var/www/html" dst: "/var/www/html"
is_bind: true is_bind: true
rw: true
} }
mount { mount {
src: "/usr/share/apache2" src: "/usr/share/apache2"
dst: "/usr/share/apache2" dst: "/usr/share/apache2"
is_bind: true is_bind: true
} }
mount {
src: "/var/lib/apache2"
dst: "/var/lib/apache2"
is_bind: true
}
mount { mount {
src: "/usr/sbin/apache2" src: "/usr/sbin/apache2"
dst: "/usr/sbin/apache2" dst: "/usr/sbin/apache2"