Releases: Netfloex/Nginx
Releases · Netfloex/Nginx
v2.4.0
- 339d847 Red, yellow or green values for logMessages: cloudflare and certificate expiry
- 026b3c4 Improved request error messages
- 071a6bc Add more config types to config done log message
- 7a560c9 Replace staging certificates with production environment
- d74e83d Static path does not need to exist when using the standalone environment
- 39c354d Added CLI commands:
ncm run Runs ncm
ncm htpasswd Creates an apache md5 hashed password
ncm debug-config Outputs the parsed config
ncm settings Shows a lists of the current settings
v2.3.0
v2.2.0
v2.1.0
v2.0.0
In this release the parent container JonasAlfredsson/docker-nginx-certbot is removed. This decreases image size and is a lot faster.
Note: The autorenew loop is not yet added
- 4c45663 Request certificates using certbot
- 560565b Only renew certificates which expire soon
- d6fac59 Create Diffie-Hellman parameters
- 9549fb2 Remove the parent container
Other noteworthy additions
v1.0.5
- 7228a6e Links in readme on Dockerhub work
- d898969 Added a check if the
CERBOT_EMAIL
is set, certbot can not run without it - 2114883 Updated Dependencies, Include
json5
with rollup - 61ea5b1 When using a JS config, you can now export an (async) function
New options:
- 4d65900 Added
raw
option
/* Server/Subdomain/Location: */ {
raw: {
"proxy_set_header": "host $host"
}
}
- 01d1701 Added
include
option
/* Server/Subdomain/Location: */ {
include: "/app/data/included.conf";
}
- ecd9350 Added default
username
option
username: bob # default is admin
servers:
example.com:
proxy_pass: http://example
auth: password # username is bob
- b42705a Removed
server_tokens
by default, to reenable:
nginx:
server_tokens: true
servers:
# ...