Browse Source

better nginx config

pull/23/head
Johannes Schickling 9 years ago
parent
commit
2b41ab4def
  1. 59
      nginx-envtpl/README.md
  2. 4
      nginx-envtpl/entrypoint.sh

59
nginx-envtpl/README.md

@ -51,3 +51,62 @@ http {
}
```
### Alternative: Template via `$NGINX_CONFIG_TEMPLATE` environment variable
Instead of mounting a `nginx.conf.tpl` file via a volume, you can also pass in the template via the `$NGINX_CONFIG_TEMPLATE` environment variable.
Here is an `docker-compose.yml` example segment:
```yaml
proxy:
image: schickling/nginx-envtpl
environment:
NGINX_WORKER_RLIMIT_NOFILE: 96000
NGINX_WORKER_CONNECTIONS: 10000
NGINX_BACKLOG: 10000
NGINX_PROXY_ADDR: "http://example.com/"
NGINX_CONFIG_TEMPLATE: >
worker_processes auto;
worker_rlimit_nofile {{ NGINX_WORKER_RLIMIT_NOFILE }};
error_log /dev/stdout info;
events {
worker_connections {{ NGINX_WORKER_CONNECTIONS }};
use epoll;
multi_accept on;
}
http {
proxy_cache_path /tmp/nginx levels=1:2 keys_zone=my_zone:10m inactive=60m;
access_log /dev/stdout;
server {
listen 80 backlog={{ NGINX_BACKLOG }};
root /usr/share/nginx/html/;
index index.html;
server_name localhost;
charset utf-8;
location / {
proxy_pass {{ NGINX_PROXY_ADDR }};
proxy_cache my_zone;
proxy_cache_methods POST;
proxy_cache_key "$request_uri|$request_body";
proxy_cache_valid 5s;
proxy_cache_use_stale error timeout updating;
add_header X-Proxy-Cache $upstream_cache_status;
}
}
}
ports:
- "80:80"
```

4
nginx-envtpl/entrypoint.sh

@ -1,5 +1,9 @@
#!/bin/sh
if [[ ! -z $NGINX_CONFIG_TEMPLATE ]]; then
envtpl < $NGINX_CONFIG_TEMPLATE > /etc/nginx/nginx.conf
else
envtpl /etc/nginx/nginx.conf.tpl
fi
exec "$@"
Loading…
Cancel
Save