Releases: Tivix/docker-nginx
Releases · Tivix/docker-nginx
v18
v16
v15
v14
What's Changed
- Add options to turn on nosniff and content-security-policy headers by @wozniakpl in #8
New Contributors
- @wozniakpl made their first contribution in #8
Full Changelog: v13...v14
v13
v9
v8
v7
v6
v5
-
Added
LOG_LEVEL
variable. Defaults tonotice
and accepts nginx error_log verbosity levels. -
HEALTHCHECK and STATS variables now accept location string instead of boolean value.
Setting
HEALTHCHECK=/health
andSTATS=/stats
will create following config:server { listen 127.0.0.1:8080; access_log off; location /stats { stub_status on; } location /health { return 200; } location / { return 404; } }