mongo-python-driver/test/mod_wsgi_test/apache22ubuntu1204.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

30 lines
659 B
Plaintext

# This is a minimal httpd.conf file written for Apache 2.2 on Ubuntu 12.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 authz_host_module modules/mod_authz_host.so
ErrorLog ${PWD}/error_log
CustomLog ${PWD}/access_log combined
<Directory "/">
AllowOverride None
Order Deny,Allow
Deny from All
</Directory>
<Directory ${PWD}>
AllowOverride None
Order Allow,Deny
Allow from All
</Directory>
Include ${PROJECT_DIRECTORY}/test/mod_wsgi_test/${MOD_WSGI_CONF}