forked from lolcat/4get
1
0
Fork 0

add set -e and use exec to replace parent process to handle docker signals (#6)

use `exec` to turn httpd into parent process. This is important for docker signalling such as `docker stop ${container_id}`
add `set -e` which stops the entrypoint script if any command exits with a non-zero exit code.

Reviewed-on: lolcat/4get#6
Co-authored-by: throwaway <developerthrowaway@protonmail.com>
Co-committed-by: throwaway <developerthrowaway@protonmail.com>
This commit is contained in:
throwaway 2023-08-24 20:50:05 -05:00 committed by lolcat
parent 40e058a32a
commit 232995bf0d
1 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,5 @@
#!/bin/sh
set -e
sed -i "s/ServerName.*/ServerName ${FOURGET_SERVER_NAME}/g" /etc/apache2/httpd.conf
sed -i "s/ServerAdmin.*/ServerAdmin ${FOURGET_SERVER_ADMIN_EMAIL}/g" /etc/apache2/httpd.conf
httpd -DFOREGROUND
exec httpd -DFOREGROUND