mirror of
https://github.com/bitnami/containers.git
synced 2026-03-06 15:09:19 +08:00
13 lines
221 B
Bash
Executable File
13 lines
221 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}
|