Skip to content

Releases: Tivix/docker-nginx

v18

09 Apr 09:39
8981e5d
Compare
Choose a tag to compare

What's Changed

Full Changelog: v16...v18

v16

19 Apr 11:28
dc48805
Compare
Choose a tag to compare
v16

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
2ef5355
Compare
Choose a tag to compare
v15

Full Changelog: v14...v15

v14

17 Apr 08:02
c3ebc8f
Compare
Choose a tag to compare
v14

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
e24ecfd
Compare
Choose a tag to compare
v13

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
Choose a tag to compare
v9

Add proxy timeout related variables:

PROXY_READ_TIMEOUT
PROXY_SEND_TIMEOUT

Allows to change default 60s timeouts.

v8

14 May 14:35
Compare
Choose a tag to compare
v8

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
Choose a tag to compare
v7

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
Choose a tag to compare
v6
  • Added UPLOADS variable
  • Added MAINTENANCE variable

v5

27 Mar 15:25
Compare
Choose a tag to compare
v5
  • 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;
      }
    }