diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2018-11-13 22:00:57 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2018-11-13 22:00:57 -0800 |
commit | ad9a316e59f311ba9e1597efd69c7bf5ac1f046b (patch) | |
tree | 0538735b7264a2ff73b0486e8ae297b43b552467 /python | |
parent | ff0053e3652012ee98412780fb6f82b367bf9400 (diff) | |
download | fatcat-ad9a316e59f311ba9e1597efd69c7bf5ac1f046b.tar.gz fatcat-ad9a316e59f311ba9e1597efd69c7bf5ac1f046b.zip |
initial/example uwsgi fatcat_web file
Diffstat (limited to 'python')
-rw-r--r-- | python/uwsgi.ini | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/python/uwsgi.ini b/python/uwsgi.ini new file mode 100644 index 00000000..fdf021b6 --- /dev/null +++ b/python/uwsgi.ini @@ -0,0 +1,10 @@ +[uwsgi] +plugin = python3,http +http = :9810 +#socket = 127.0.0.1:3031 +manage-script-name = True +mount = /=fatcat_web:app +virtualenv = .venv +processes = 6 +threads = 4 +stats = 127.0.0.1:3331 |