diff --git a/changelog.md b/changelog.md index e409939..ffd5e5d 100644 --- a/changelog.md +++ b/changelog.md @@ -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! diff --git a/client/src/pages/servapps/containers/docker-compose.jsx b/client/src/pages/servapps/containers/docker-compose.jsx index 8ff0056..ffb6ca8 100644 --- a/client/src/pages/servapps/containers/docker-compose.jsx +++ b/client/src/pages/servapps/containers/docker-compose.jsx @@ -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, diff --git a/src/httpServer.go b/src/httpServer.go index fd9c1db..f4a5791 100644 --- a/src/httpServer.go +++ b/src/httpServer.go @@ -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 }