You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
We're trying to add a noindex response header to prevent search indexing, which would apply to the lms, cms, mfes etc, something like this:
Describe the solution you'd like
Easiest way to do this would probably be to patch the proxy config in the caddyfile, but it seems like this is not possible currently as this patch is not available. Suggestion is to add a new patch
Is your feature request related to a problem? Please describe.
We're trying to add a noindex response header to prevent search indexing, which would apply to the lms, cms, mfes etc, something like this:
`
(proxy) {
...
reverse_proxy {args.0} {
header_up X-Forwarded-Port {{ 443 if ENABLE_HTTPS else 80 }}
}
}
`
Describe the solution you'd like
Easiest way to do this would probably be to patch the proxy config in the caddyfile, but it seems like this is not possible currently as this patch is not available. Suggestion is to add a new patch
`(proxy) {
...
reverse_proxy {args.0} {
header_up X-Forwarded-Port {{ 443 if ENABLE_HTTPS else 80 }}
}
}`
Additional context
Happy to take this on and submit a PR.
The text was updated successfully, but these errors were encountered: