|
3 years ago | |
---|---|---|
rootfs | 3 years ago | |
.Dockerfile.swp | 3 years ago | |
.drone.yml | 3 years ago | |
Dockerfile | 3 years ago | |
README.md | 3 years ago | |
auto_upgrade.sh | 3 years ago | |
docker-compose.yml | 3 years ago |
This image is build and push with drone.io, a circle-ci like self-hosted. If you don't trust, you can build yourself.
What is Nginx?
nginx (engine x) is an HTTP and reverse proxy server, a mail proxy server, and a generic TCP proxy server, originally written by Igor Sysoev. For a long time, it has been running on many heavily loaded Russian sites including Yandex, Mail.Ru, VK, and Rambler. According to Netcraft, nginx served or proxied 24.29% busiest sites in December 2015. Here are some of the success stories: Netflix, Wordpress.com, FastMail.FM.
Reverse-nginx generate for you the configuration of reverse proxy. Like traefik, it is based on the labels of containers, but it isn't dynamicly.
docker build -t xataz/reverse-nginx github.com/xataz/dockerfiles.git#master:reverse-nginx
docker build -t xataz/reverse-nginx --build-arg NGINX_VER=1.9.5 github.com/xataz/dockerfiles.git#master:reverse-nginx
Variable | Description | default | value |
---|---|---|---|
UID | UID for launch nginx | 991 | Valid UID number |
GID | GID for launch nginx | 991 | Valid GID number |
email use for generate letsencrypt certificates | admin@mydomain.local | Valid address mail |
Label Name | Description | default | value |
---|---|---|---|
reverse.frontend.domain | Domain Name for this service | mydomain.local | valid domain name |
reverse.frontend.path | Domain path (warning, no rewrite url) | / | valid path, with / |
reverse.frontend.auth | For auth basic | none | user:encryptpassword |
reverse.frontend.ssltype | Choose ssl type | ec384 | rsa2048, rsa4096, rsa8192, ec256 or ec384 |
reverse.frontend.domain_max_body_size | Choose max size upload | 200M | Numeric value with unit (K,M,G,T) |
reverse.frontend.ssl | Generate letsencrypt certificate | false | true or false |
reverse.frontend.tor | If container is an hidden service | false | boolean (true / false) |
reverse.backend.port | Port use by container | 8080 | Valid port number |
More labels soon !!!
For exemple, I launch lutim container :
$ docker run -d \
--name lutim \
--label reverse.frontend.domain=sub.domain.com \
--label reverse.frontend.path=lutim \
--label reverse.frontend.auth=USER:$(openssl passwd -crypt PASSWORD) \
--label reverse.frontend.ssltype=ec256 \
--label reverse.frontend.ssl = true \
--label reverse.backend.port=8181 \
-v /docker/config/lutim/data:/data \
-v /docker/data/lutim:/lutim/files \
-e UID=1001 \
-e GID=1001 \
-e WEBROOT=/lutim \
-e SECRET=$(date +%s | md5sum | head -c 32) \
-e CONTACT=contact@domain.com \
-e MAX_FILE_SIZE=250000000 \
xataz/lutim
docker run -d \
-p 80:8080 \
-p 443:8443 \
--name reverse \
-e EMAIL=me@mydomain.com \
-v /var/run/docker.sock:/var/run/docker.sock \
xataz/reverse-nginx
URI Access : https://sub.domain.com/lutim