mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2025-02-06 10:40:46 +03:00
11 lines
173 B
Plaintext
11 lines
173 B
Plaintext
|
setup_apache () {
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
run_apache () {
|
||
|
# Apache gets grumpy about PID files pre-existing
|
||
|
rm -f ${APACHE_PID_FILE}
|
||
|
|
||
|
exec /usr/sbin/apache2ctl -DFOREGROUND
|
||
|
}
|