Releases: Tivix/docker-nginx
Releases · Tivix/docker-nginx
v18
09 Apr 09:39
Compare
Sorry, something went wrong.
No results found
v16
19 Apr 11:28
Compare
Sorry, something went wrong.
No results found
What's Changed
Add nginx-mod-http-headers-more and more_clear_headers 'Server' by @wozniakpl in #10
Full Changelog : v15...v16
v15
17 Apr 09:59
Compare
Sorry, something went wrong.
No results found
v14
17 Apr 08:02
Compare
Sorry, something went wrong.
No results found
What's Changed
Add options to turn on nosniff and content-security-policy headers by @wozniakpl in #8
New Contributors
Full Changelog : v13...v14
v13
07 Mar 10:11
Compare
Sorry, something went wrong.
No results found
What's Changed
feat: Add statement which allow to exclude paths from basic_auth by @jozwior in #7
New Contributors
Full Changelog : v12...v13
v9
08 Jun 06:47
Compare
Sorry, something went wrong.
No results found
Add proxy timeout related variables:
PROXY_READ_TIMEOUT
PROXY_SEND_TIMEOUT
Allows to change default 60s timeouts.
v8
14 May 14:35
Compare
Sorry, something went wrong.
No results found
Added HEALTHCHECK_LISTEN. Lets you configure the healthcheck location to listen on specific IP (or 0.0.0.0)
v7
07 May 11:54
Compare
Sorry, something went wrong.
No results found
Added LOCATION_EXTRAS variable.
- UPSTREAMS=/:service_a:80,/service_b:service_b:80
- 'LOCATION_EXTRAS=/service_b:root /var/www;'
Will add root /var/www; to location /service_b { } block
v6
10 Apr 16:29
Compare
Sorry, something went wrong.
No results found
Added UPLOADS variable
Added MAINTENANCE variable
v5
27 Mar 15:25
Compare
Sorry, something went wrong.
No results found
Added LOG_LEVEL variable. Defaults to notice and accepts nginx error_log verbosity levels.
HEALTHCHECK and STATS variables now accept location string instead of boolean value.
Setting HEALTHCHECK=/health and STATS=/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;
}
}