mongo-python-driver/test/mod_wsgi_test/apache24ubuntu161404.conf
Shane Harvey eed4a55184
PYTHON-694 Test mod_wsgi sub interpreters (#1327)
Test mod_wsgi sub interpreters and embedded mode.
Use unique collection name for each mod_wsgi interpreter.
Test encoding/decoding all bson types.
2023-07-26 18:03:29 -07:00

29 lines
690 B
Plaintext

# This is a minimal httpd.conf file written for Apache 2.4 on Ubuntu 14.04/16.04
# The modules directory is here on Ubuntu.
ServerRoot "/usr/lib/apache2"
DocumentRoot ${PWD}
PidFile ${PWD}/apache2.pid
# Bind to localhost only, don't require sudo.
Listen 127.0.0.1:8080
# Required modules.
LoadModule mpm_prefork_module modules/mod_mpm_prefork.so
LoadModule authz_core_module modules/mod_authz_core.so
ErrorLog ${PWD}/error_log
CustomLog ${PWD}/access_log combined
<Directory "/">
AllowOverride None
Require all denied
</Directory>
<Directory ${PWD}>
AllowOverride None
Require all granted
</Directory>
Include ${PROJECT_DIRECTORY}/test/mod_wsgi_test/${MOD_WSGI_CONF}