Switch proxy/hosts to proxy/host

The proxy only supports a single host per app for nowm so make the
config match that.
This commit is contained in:
Donal McBreen
2024-09-16 20:45:09 +01:00
parent 1f721739d6
commit 267b526438
4 changed files with 7 additions and 9 deletions

View File

@@ -2,7 +2,7 @@ class Kamal::Configuration::Validator::Proxy < Kamal::Configuration::Validator
def validate!
super
if config["hosts"].blank? && config["ssl"]
if config["host"].blank? && config["ssl"]
error "Must set a host to enable automatic SSL"
end
end