You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
389 B
17 lines
389 B
## |
|
## apache-python.conf -- Apache configuration for Python |
|
## |
|
|
|
# load DSO |
|
LoadModule python_module @l_prefix@/libexec/apache/mod_python.so |
|
|
|
# mod_python configuration |
|
PythonOption mod_python.mutex_locks 8 |
|
|
|
# activate CGI acceleration by file extension |
|
<Files ~ "\.py$"> |
|
Options +ExecCGI |
|
SetHandler mod_python |
|
PythonHandler mod_python.cgihandler |
|
</Files> |
|
|
|
|