[release] v0.7.2

This commit is contained in:
Yann Stepienik 2023-06-18 10:00:39 +01:00
parent 0be36afe71
commit a8372855e0
3 changed files with 9 additions and 1 deletions

View file

@ -1,3 +1,8 @@
## Version 0.7.1 ->
- Fix compat with non-HTTP protocol like WebDAV (for Nextcloud for example)
- Fix regression with DNS wildcards certificates
- Fix issue with the installer when changing both the labels and the volumes
## Version 0.7.0
- Add Cosmos App Market!
- Reforged the DNS CHallenge to be more user friendly. You can select your DNS provider in a list, and it will guide you through the process with the right fields to set (directly in the UI). No more env variables to set!

View file

@ -621,6 +621,7 @@ const DockerComposeImport = ({ refresh, dockerComposeInit, installerInit, defaul
setOverrides({
...overrides,
[value.container_name]: {
...overrides[value.container_name],
environment: containerInfo.envVars,
labels: containerInfo.labels,
}
@ -649,6 +650,7 @@ const DockerComposeImport = ({ refresh, dockerComposeInit, installerInit, defaul
setOverrides({
...overrides,
[value.container_name]: {
...overrides[value.container_name],
volumes: containerInfo.volumes.map((v, k) => {
return {
type: v.Type,

View file

@ -40,13 +40,14 @@ func startHTTPSServer(router *mux.Router, tlsCert string, tlsKey string) {
cfg := simplecert.Default
cfg.Domains = utils.GetAllHostnames(false, false)
cfg.Domains = utils.GetAllHostnames(true, false)
cfg.CacheDir = "/config/certificates"
cfg.SSLEmail = config.HTTPConfig.SSLEmail
cfg.HTTPAddress = "0.0.0.0:"+serverPortHTTP
cfg.TLSAddress = "0.0.0.0:"+serverPortHTTPS
if config.HTTPConfig.DNSChallengeProvider != "" {
utils.Log("Using DNS Challenge with Provider: " + config.HTTPConfig.DNSChallengeProvider)
cfg.DNSProvider = config.HTTPConfig.DNSChallengeProvider
}