mirror of
https://github.com/bitnami/containers.git
synced 2026-03-14 06:48:11 +08:00
11 lines
234 B
Bash
Executable File
11 lines
234 B
Bash
Executable File
#!/bin/bash
|
|
. /opt/bitnami/base/functions
|
|
. /opt/bitnami/base/helpers
|
|
|
|
DAEMON=httpd
|
|
EXEC=$(which "$DAEMON")
|
|
ARGS=("-f" "/opt/bitnami/apache/conf/httpd.conf" "-D" "FOREGROUND")
|
|
|
|
info "Starting ${DAEMON}..."
|
|
exec "${EXEC}" "${ARGS[@]}"
|