mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-09-05 13:11:33 +00:00
24 lines
665 B
Plaintext
24 lines
665 B
Plaintext
main = Server(
|
|
uuid="f400bf85-4538-4f7a-8908-67e313d515c2",
|
|
access_log="/logs/access.log",
|
|
error_log="/logs/error.log",
|
|
chroot="./",
|
|
default_host="192.168.173.18",
|
|
name="test",
|
|
pid_file="/run/mongrel2.pid",
|
|
port=6767,
|
|
hosts = [
|
|
Host(name="192.168.173.18", routes={
|
|
'/': Handler(send_spec='tcp://192.168.173.18:9999',
|
|
send_ident='54c6755b-9628-40a4-9a2d-cc82a816345e',
|
|
recv_spec='tcp://192.168.173.18:9998', recv_ident='')
|
|
})
|
|
]
|
|
)
|
|
|
|
settings = {'upload.temp_store':'tmp/mongrel2.upload.XXXXXX'}
|
|
servers = [main]
|
|
|
|
|
|
uwsgi = { 'socket':':3031', 'master':'true'}
|