Skip to content

Instantly share code, notes, and snippets.

@dblooman
Created November 7, 2014 10:14
Show Gist options
  • Select an option

  • Save dblooman/9f338104e81de9572656 to your computer and use it in GitHub Desktop.

Select an option

Save dblooman/9f338104e81de9572656 to your computer and use it in GitHub Desktop.
# Configuration file for the httpd service.
# Source pal specific profiles
. /etc/bbc/profile
# Make sure httpd generates core dumps
DAEMON_COREFILE_LIMIT=unlimited
#
# The default processing model (MPM) is the process-based
# 'prefork' model. A thread-based model, 'worker', is also
# available, but does not work with some modules (such as PHP).
# The service must be stopped before changing this variable.
#
# HTTPD=/usr/sbin/httpd
#
# To pass additional options (for instance, -D definitions) to the
# httpd binary at startup, set OPTIONS here.
#
# Always uppercase!
TMP_OPTIONS=$(echo "-DSERVER_ENV_${SERVER_ENV} -DSERVER_DATACENTRE_${SERVER_DATACENTRE} -DSERVER_CLASS_${SERVER_CLASS}" | tr [a-z] [A-Z])
OPTIONS="${OPTIONS} ${TMP_OPTIONS}"
#
# By default, the httpd process is started in the C locale; to
# change the locale in which the server runs, the HTTPD_LANG
# variable can be set.
#
#HTTPD_LANG=C
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment