mirror of
https://github.com/danog/php.git
synced 2024-12-12 17:17:33 +01:00
8 lines
132 B
Plaintext
8 lines
132 B
Plaintext
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
# Apache gets grumpy about PID files pre-existing
|
||
|
rm -f /var/run/apache2/apache2.pid
|
||
|
|
||
|
exec apache2 -DFOREGROUND
|