From b56fb8bc40fcf841f9cb1ebafb5283daec00e47e Mon Sep 17 00:00:00 2001 From: Ernst Widerberg Date: Wed, 10 Nov 2021 16:22:39 +0100 Subject: Add auth-server-poc --- auth-server-poc/config/uwsgi.ini | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 auth-server-poc/config/uwsgi.ini (limited to 'auth-server-poc/config/uwsgi.ini') 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 -- cgit v1.1