Add user agent to default headers

This commit is contained in:
Donal McBreen
2024-09-16 10:01:08 +01:00
parent bf91d6c1ca
commit a316e51eda
2 changed files with 1 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ class Kamal::Configuration::Proxy
DEFAULT_HTTP_PORT = 80
DEFAULT_HTTPS_PORT = 443
DEFAULT_IMAGE = "basecamp/kamal-proxy:latest"
DEFAULT_LOG_REQUEST_HEADERS = [ "Cache-Control", "Last-Modified" ]
DEFAULT_LOG_REQUEST_HEADERS = [ "Cache-Control", "Last-Modified", "User-Agent" ]
delegate :argumentize, :optionize, to: Kamal::Utils