Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
81e1fc07
Commit
81e1fc07
authored
Jun 20, 2015
by
Tres Seaver
2
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Document compositon of Zope w/ other WSGI apps.
[ci skip]
parent
003ca494
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
0 deletions
+31
-0
doc/WSGI.rst
doc/WSGI.rst
+31
-0
No files found.
doc/WSGI.rst
View file @
81e1fc07
...
@@ -172,3 +172,34 @@ Start the WSGI Server
...
@@ -172,3 +172,34 @@ Start the WSGI Server
Starting server in PID 24934.
Starting server in PID 24934.
serving on http://127.0.0.1:8080
serving on http://127.0.0.1:8080
Running Other Applications in the same WSGI Server Process
----------------------------------------------------------
You can use any of the normal ``Paste`` WSGI features to combine Zope and
other WSGI applications inside the same server process. E.g., the following
configuration uses the
`composite application <http://pythonpaste.org/deploy/#composite-applications>`_
support offered by ``PasteDeploy`` to host Zope at the ``/`` prefix,
with static files served from disk at ``/static``:
.. code-block:: ini
[app:zope-app]
use = egg:Zope2#main
zope_conf = %(here)s/zope.conf
[pipeline:zope-pipeline]
pipeline =
egg:paste#evalerror
egg:repoze.retry#retry
egg:repoze.tm2#tm
zope
[app:static]
use = egg:Paste#static
document_root = %(here)s/static
[composite:main]
use = egg:Paste#urlmap
/ = zope-pipeline
/static = static
Kirill Smelkov
@kirr
mentioned in commit
d9977bd6
·
Jan 30, 2017
mentioned in commit
d9977bd6
mentioned in commit d9977bd66a5ff06035d6d96f9a8bfb0bf8ef0cd2
Toggle commit list
Kirill Smelkov
@kirr
mentioned in commit
9fcdc00f
·
Jan 30, 2017
mentioned in commit
9fcdc00f
mentioned in commit 9fcdc00f7bc5393860028316248c369464cec93f
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment