mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-19 03:52:17 +00:00
5391a9beb2
- change MPM backend from static to dynamic, but keep mpm_prefork for compatiblity with e.g. php modules - install dedicated MPM load file in case httpd was build with modular MPM (modules.d/000_mpm_prefork_fallback.conf) - disable SSLv3 and SSLv2 fallback in sample httpd-ssl-conf - use @sample macro instead EXAMPLESDIR - add some SSLCipherSuite examples for OpenSSL >= 1.0.x - add libressl support [1] - add pkg-install script (to handle new modular MPM build) - build now most all modules, so users using packages don't have to run a custom build for missing modules - fix suexec mode PR: 196139 [1] MFH: 2015Q1
14 lines
293 B
Plaintext
14 lines
293 B
Plaintext
--- support/envvars-std.in.orig 2012-03-08 16:10:51 UTC
|
|
+++ support/envvars-std.in
|
|
@@ -26,3 +26,10 @@ fi
|
|
export @SHLIBPATH_VAR@
|
|
#
|
|
@OS_SPECIFIC_VARS@
|
|
+
|
|
+ENVVARS_DIR=%%PREFIX%%/etc/apache24/envvars.d
|
|
+
|
|
+for envvars_file in $(ls ${ENVVARS_DIR}/*.env 2>/dev/null)
|
|
+do
|
|
+ . ${envvars_file}
|
|
+done
|