mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-09-06 05:31:44 +00:00
--HG-- rename : debug.ini => examples/debug.ini rename : fibers.yml => examples/fibers.yml rename : heavytest.ini => examples/heavytest.ini rename : logic.ini => examples/logic.ini rename : mega.xml => examples/mega.xml rename : multi.ini => examples/multi.ini rename : multi.xml => examples/multi.xml rename : protected.ini => examples/protected.ini rename : sites.xml => examples/sites.xml rename : uwsgi.xml => examples/uwsgi.xml rename : welcome.ini => examples/welcome.ini rename : werkzeug.yml => examples/werkzeug.yml rename : werkzeug_strict.yml => examples/werkzeug_strict.yml rename : zmqgevent.ini => examples/zmqgevent.ini
24 lines
533 B
YAML
24 lines
533 B
YAML
# werkzeug test module via YAML
|
|
uwsgi:
|
|
module: werkzeug.testapp:test_app # a comment
|
|
socket: :3032 # another comment
|
|
# a line comment
|
|
# another line comment
|
|
|
|
# adding a tab as separator (discouraged)
|
|
master: 1
|
|
processes: 8 # the number of processes
|
|
memory-report: 1
|
|
show-config: true
|
|
|
|
# now a psgi app via plugin
|
|
app2:
|
|
plugins: psgi
|
|
socket: :3032 # another comment
|
|
# adding a tab as separator (discouraged)
|
|
master: 1
|
|
processes: 8 # the number of processes
|
|
memory-report: 1
|
|
psgi: test.psgi
|
|
show-config: true
|