[Python-modules-commits] r10829 - in packages/mod-wsgi/trunk/debian (changelog wsgi.conf)

bzed at users.alioth.debian.org bzed at users.alioth.debian.org
Sat Dec 19 12:01:01 UTC 2009


    Date: Saturday, December 19, 2009 @ 12:00:47
  Author: bzed
Revision: 10829

* New upstream release.
* Update wsgi.conf example. 

Modified:
  packages/mod-wsgi/trunk/debian/changelog
  packages/mod-wsgi/trunk/debian/wsgi.conf

Modified: packages/mod-wsgi/trunk/debian/changelog
===================================================================
--- packages/mod-wsgi/trunk/debian/changelog	2009-12-19 11:40:35 UTC (rev 10828)
+++ packages/mod-wsgi/trunk/debian/changelog	2009-12-19 12:00:47 UTC (rev 10829)
@@ -1,3 +1,10 @@
+mod-wsgi (3.1-1) unstable; urgency=low
+
+  * New upstream release.
+  * Update wsgi.conf example. 
+
+ -- Bernd Zeimetz <bzed at debian.org>  Sat, 19 Dec 2009 12:59:50 +0100
+
 mod-wsgi (2.8-1) unstable; urgency=low
 
   * New upstream release

Modified: packages/mod-wsgi/trunk/debian/wsgi.conf
===================================================================
--- packages/mod-wsgi/trunk/debian/wsgi.conf	2009-12-19 11:40:35 UTC (rev 10828)
+++ packages/mod-wsgi/trunk/debian/wsgi.conf	2009-12-19 12:00:47 UTC (rev 10829)
@@ -42,6 +42,35 @@
         #WSGIPythonPath directory|directory-1:directory-2:...
 
 
+    #WSGIPythonEggs: Directory to use for Python eggs cache.
+    #
+    #Used to specify the directory to be used as the Python eggs cache
+    #directory for all sub interpreters created within embedded mode.
+    #This directive achieves the same affect as having set the
+    #PYTHON_EGG_CACHE environment variable.
+    #Note that the directory specified must exist and be writable by the user
+    #that the Apache child processes run as. The directive only applies to
+    #mod_wsgi embedded mode. To set the Python eggs cache directory for
+    #mod_wsgi daemon processes, use the 'python-eggs' option to the
+    #WSGIDaemonProcess directive instead. 
+
+        #WSGIPythonEggs directory
+
+
+
+    #WSGIRestrictEmbedded: Enable restrictions on use of embedded mode.
+    #
+    #The WSGIRestrictEmbedded directive determines whether mod_wsgi embedded
+    #mode is enabled or not. If set to 'On' and the restriction on embedded
+    #mode is therefore enabled, any attempt to make a request against a
+    #WSGI application which hasn't been properly configured so as to be
+    #delegated to a daemon mode process will fail with a HTTP internal server
+    #error response. 
+
+        #WSGIRestrictEmbedded On|Off
+
+
+
     #WSGIRestrictStdin: Enable restrictions on use of STDIN.
     #WSGIRestrictStdout: Enable restrictions on use of STDOUT.
     #WSGIRestrictSignal: Enable restrictions on use of signal().
@@ -56,6 +85,7 @@
         #WSGIRestrictSignal On
 
 
+
     #WSGIAcceptMutex: Specify type of accept mutex used by daemon processes.
     #
     #The WSGIAcceptMutex directive sets the method that mod_wsgi will use to
@@ -68,4 +98,26 @@
 
         #WSGIAcceptMutex default
 
+
+
+    #WSGIImportScript: Specify a script file to be loaded on process start. 
+    #
+    #The WSGIImportScript directive can be used to specify a script file to be
+    #loaded when a process starts. Options must be provided to indicate the
+    #name of the process group and the application group into which the script
+    #will be loaded.
+
+        #WSGIImportScript process-group=name application-group=name
+
+
+    #WSGILazyInitialization: Enable/disable lazy initialisation of Python. 
+    #
+    #The WSGILazyInitialization directives sets whether or not the Python
+    #interpreter is preinitialised within the Apache parent process or whether
+    #lazy initialisation is performed, and the Python interpreter only
+    #initialised in the Apache server processes or mod_wsgi daemon processes
+    #after they have forked from the Apache parent process. 
+
+        #WSGILazyInitialization On|Off
+
 </IfModule>




More information about the Python-modules-commits mailing list