feat: add proxy

This commit is contained in:
Anselm Stordeur
2019-01-16 19:54:30 +01:00
committed by Rainer Killinger
commit fbe1a65cd1
23 changed files with 3656 additions and 0 deletions

17
nginx.conf.template Normal file
View File

@@ -0,0 +1,17 @@
{{{ dockerVersionMap }}}
# create a custom request limit zone which can handle 160,000 IP-Addresses at the same time
# routes using this limit zone will limit each client to not send more than one request in 50ms
# be sure to use burst handling when needed, because most clients will fire some requests in parallel
limit_req_zone $binary_remote_addr zone=customstappslimit:10m rate=20r/s;
server {
{{{ listener }}}
{{{ visibleRoutes }}}
{{{ hiddenRoutes }}}
{{{ staticRoute }}}
}