aboutsummaryrefslogtreecommitdiffstats
path: root/main/patchwork/nginx-patchwork.conf
diff options
context:
space:
mode:
authorCarlo Landmeter <clandmeter@alpinelinux.org>2018-01-30 23:40:17 +0000
committerCarlo Landmeter <clandmeter@alpinelinux.org>2018-01-30 23:40:17 +0000
commitd0d2c8164b2266ac86642397ba19baed2e6a5f55 (patch)
tree772b71c461dd0dba2ae02a960212bfaa11dc6d9f /main/patchwork/nginx-patchwork.conf
parent8b198b0998db2476459d39307b6b2996737a4298 (diff)
downloadaports-d0d2c8164b2266ac86642397ba19baed2e6a5f55.tar.bz2
aports-d0d2c8164b2266ac86642397ba19baed2e6a5f55.tar.xz
main/patchwork: move to community
Diffstat (limited to 'main/patchwork/nginx-patchwork.conf')
-rw-r--r--main/patchwork/nginx-patchwork.conf33
1 files changed, 0 insertions, 33 deletions
diff --git a/main/patchwork/nginx-patchwork.conf b/main/patchwork/nginx-patchwork.conf
deleted file mode 100644
index 575bc3e0ba..0000000000
--- a/main/patchwork/nginx-patchwork.conf
+++ /dev/null
@@ -1,33 +0,0 @@
-server {
- listen 80;
- server_name domain.tld;
- access_log /var/log/nginx/patchwork.log;
- error_log /var/log/nginx/patchwork-error.log;
-
- tcp_nopush on;
- tcp_nodelay on;
- keepalive_timeout 65;
- types_hash_max_size 2048;
-
- gzip on;
- gzip_proxied any;
- gzip_types text/plain text/css text/javascript application/x-javascript
- text/xml application/xml image/svg+xml
- application/vnd.ms-fontobject application/x-font-ttf font/opentype;
-
- location = favicon.ico {
- access_log off;
- log_not_found off;
- }
-
- location /static {
- alias /usr/share/webapps/patchwork/htdocs;
- expires 3h;
- }
-
- location / {
- include uwsgi_params;
- uwsgi_pass unix:/run/uwsgi/patchwork.sock;
- uwsgi_modifier1 30;
- }
-}