You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ctk/services/backend/configs/uwsgi/uwsgi.ini

21 lines
321 B
INI

[uwsgi]
ini = :base
# use socket option a third-party router (nginx),
# use http option to set uwsgi to accept incoming
# HTTP requests and route them by itself
http = 0.0.0.0:9000
master = true
processes = 5
[base]
chdir = /home/server
module = main.wsgi:application
chmod-socket=666
uid = uwsgi
gid = uwsgi
[dev]