summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/nginx/patchwork.conf1
-rw-r--r--lib/uwsgi/patchwork.ini5
2 files changed, 5 insertions, 1 deletions
diff --git a/lib/nginx/patchwork.conf b/lib/nginx/patchwork.conf
index 5479496..1e69d1a 100644
--- a/lib/nginx/patchwork.conf
+++ b/lib/nginx/patchwork.conf
@@ -35,7 +35,6 @@ http {
location / {
include uwsgi_params;
uwsgi_pass unix:/run/uwsgi/patchwork.sock;
- uwsgi_modifier1 30;
}
}
}
diff --git a/lib/uwsgi/patchwork.ini b/lib/uwsgi/patchwork.ini
index fc0f0ed..04a9837 100644
--- a/lib/uwsgi/patchwork.ini
+++ b/lib/uwsgi/patchwork.ini
@@ -6,11 +6,16 @@ project = patchwork
base = /opt
user = www-data
group = www-data
+url = /
chdir = %(base)/%(project)
pythonpath = %(base)/%(project)
module = %(project).wsgi:application
+# rewrite PATH_INFO and SCRIPT_NAME according to mount-points (for nginx)
+manage-script-name = true
+mount = %(url)=%(module)
+
master = true
processes = 5
# increase buffer size to avoid "502 bad gateway error"