No description
Find a file
2022-03-07 17:58:42 +01:00
example Add example. 2022-03-07 17:58:42 +01:00
.dockerignore Overhaul image. 2022-03-07 17:58:18 +01:00
.gitignore Overhaul image. 2022-03-07 17:58:18 +01:00
Dockerfile Overhaul image. 2022-03-07 17:58:18 +01:00
readme.md Overhaul image. 2022-03-07 17:58:18 +01:00
start-nginx.sh Overhaul image. 2022-03-07 17:58:18 +01:00

nginx-envsubst

A simple docker image for configuring nginx with environment variables.

Usage

Mount you whole nginx configuration into /etc/nginx.tmpl. The configuration files can contain environment variables compatible with envsubst, list these variables in a file /etc/envsubst.conf. Additionally, the server gets reloaded when a update to one of the referenced certificates happens.

Minimal Example

cd example
docker run --rm -it \
    -e DOMAIN_NAME=localhost \
    -p 80:80 -p 443:443
    -v "$PWD/nginx.conf:/etc/nginx.tmpl/nginx.conf" \
    -v "$PWD/envsubst.conf:/etc/envsubst.conf" \
    -v "$PWD/cert:/cert" \
    redxef/nginx-envsubst

Source

git.redxef.duckdns.org