diff options
author | BonfaceKilz | 2021-01-12 22:51:30 +0300 |
---|---|---|
committer | Gitea | 2021-01-12 14:09:34 -0600 |
commit | 7ec8ce82b9f11ba156aebe52580ce7c57e7bfbd4 (patch) | |
tree | 457cf57f07fd578b339abdd5e20d31e830b5e870 /gn/services | |
parent | 8cb0d77354b82dcc7a6579b97604f41b34a789f0 (diff) | |
download | guix-bioinformatics-7ec8ce82b9f11ba156aebe52580ce7c57e7bfbd4.tar.gz |
gn: services: gn1-httpd-config: Use MemorySession for sessions
See:
<http://modpython.org/live/mod_python-3.3.1/doc-html/pyapi-sess-classes.html>
Diffstat (limited to 'gn/services')
-rw-r--r-- | gn/services/gn1-httpd-config.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gn/services/gn1-httpd-config.scm b/gn/services/gn1-httpd-config.scm index 11d8fbc..a8c7f3f 100644 --- a/gn/services/gn1-httpd-config.scm +++ b/gn/services/gn1-httpd-config.scm @@ -106,7 +106,6 @@ NameVirtualHost *:8042 </Directory> </VirtualHost> <Directory " genenetwork1 "/web/webqtl> - PythonOption session FileSession #what is the difference between these two? AddHandler mod_python .py #SetHandler python-program @@ -115,6 +114,7 @@ NameVirtualHost *:8042 #PythonHandler mod_python.publisher #PythonHandler mod_python.cgihandler # only while debugging: + PythonOption mod_python.session.session_type MemorySession PythonDebug On </Directory> # only while debugging: |