summaryrefslogtreecommitdiff
path: root/browser-plugin
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2012-09-24 11:40:44 +0200
committerBastien Nocera <hadess@hadess.net>2012-09-24 11:44:13 +0200
commitc6c63ff18b3f9e6e506e19cf05764301075069e9 (patch)
tree147cf41f66d843eda61d857f843a8ed65c26fa0f /browser-plugin
parentf34281d887b2b0a436e287678512e6ca96a9d2b9 (diff)
downloadtotem-c6c63ff18b3f9e6e506e19cf05764301075069e9.tar.gz
browser-plugin: Fix test suite for httpd 2.4
Diffstat (limited to 'browser-plugin')
-rwxr-xr-xbrowser-plugin/tests/launch-web-server.sh11
1 files changed, 9 insertions, 2 deletions
diff --git a/browser-plugin/tests/launch-web-server.sh b/browser-plugin/tests/launch-web-server.sh
index 12a449479..6a1bb70fa 100755
--- a/browser-plugin/tests/launch-web-server.sh
+++ b/browser-plugin/tests/launch-web-server.sh
@@ -78,6 +78,12 @@ rm -f conf pid lock log access_log
# Setup the config file
cat > conf << EOF
+LoadModule mpm_prefork_module modules/mod_mpm_prefork.so
+LoadModule unixd_module modules/mod_unixd.so
+LoadModule authn_anon_module modules/mod_authn_anon.so
+LoadModule authn_core_module modules/mod_authn_core.so
+LoadModule authz_core_module modules/mod_authz_core.so
+LoadModule access_compat_module modules/mod_access_compat.so
LoadModule env_module /etc/httpd/modules/mod_env.so
#echo "LoadModule mime_magic_module /etc/httpd/modules/mod_mime_magic.so
LoadModule mime_module /etc/httpd/modules/mod_mime.so
@@ -87,9 +93,10 @@ LoadModule rewrite_module /etc/httpd/modules/mod_rewrite.so
LoadModule log_config_module /etc/httpd/modules/mod_log_config.so
LoadModule bw_module /etc/httpd/modules/mod_bw.so
+ServerName localhost
ServerRoot "$ROOTDIR"
PidFile pid
-LockFile lock
+#LockFile lock
# LogLevel crit
LogLevel info
ErrorLog log
@@ -112,7 +119,7 @@ TypesConfig /etc/mime.types
StartServers 1
MinSpareServers 1
MaxSpareServers 1
-MaxClients 10
+MaxRequestWorkers 10
EOF
popd > /dev/null