You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

34 lines
715 B

[uwsgi]
# this config will be loaded if nothing specific is specified
# load base config from below
ini = :base
# %d is the dir this configuration file is in
#socket = %dapp.sock
http = :80
check-static = /code
buffer-size=32768
master = true
processes = 10
[dev]
ini = :base
# socket (uwsgi) is not the same as http, nor http-socket
socket = :8001
[local]
ini = :base
http = :8000
# set the virtual env to use
#home=/Users/you/envs/env
[base]
# chdir to the folder of this config file, plus app/website
chdir = /code/
# load the module from wsgi.py, it is a python path from
# the directory above.
module=lms.wsgi:application
# allow anyone to connect to the socket. This is very permissive
chmod-socket=666