Skip to content

v1.0.5

Compare
Choose a tag to compare
@Netfloex Netfloex released this 01 Mar 14:09
· 87 commits to master since this release
  • 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:

/* Server/Subdomain/Location: */ {
	raw: {
		"proxy_set_header": "host $host"
	}
}
/* 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:
    # ...