reorganised nginx.conf
Some checks are pending
continuous-integration/drone/push Build is failing

This commit is contained in:
shim_
2018-11-11 17:24:27 +01:00
parent bee6bd3200
commit fb956cb777
10 changed files with 83 additions and 85 deletions

14
nginx/backends.conf Normal file
View File

@@ -0,0 +1,14 @@
upstream hub {
server 127.0.0.1:8000;
keepalive 2;
}
upstream files {
server 127.0.0.1:8082;
keepalive 4;
}
upstream webdav {
server 127.0.0.1:8080;
keepalive 2;
}