diff options
author | Ernst Widerberg <ernst@sunet.se> | 2021-11-10 16:22:39 +0100 |
---|---|---|
committer | Ernst Widerberg <ernst@sunet.se> | 2021-11-10 16:22:39 +0100 |
commit | b56fb8bc40fcf841f9cb1ebafb5283daec00e47e (patch) | |
tree | a094e60c1e70d9d3faba459d4ce49f6ee6d88a3b /auth-server-poc/config/uwsgi.ini | |
parent | b80133312330f8f060a78debc635587b88f2367c (diff) |
Add auth-server-poc
Diffstat (limited to 'auth-server-poc/config/uwsgi.ini')
-rw-r--r-- | auth-server-poc/config/uwsgi.ini | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/auth-server-poc/config/uwsgi.ini b/auth-server-poc/config/uwsgi.ini new file mode 100644 index 0000000..492b30c --- /dev/null +++ b/auth-server-poc/config/uwsgi.ini @@ -0,0 +1,13 @@ +[uwsgi] +uid=www-data +gid=www-data +chdir = /opt/auth-server-poc/src/ +callable = app +module = app +socket = /tmp/uwsgi.sock +master = true +# uwsgi websockets only allow max 1 process? +processes = 1 +chmod-socket = 666 +enable-threads = true +virtualenv = /opt/auth-server-poc |