I’m running into a strange issue with caddy and reverse_proxy. I have a caddyfile setup to serve site[dot]com and anything that hits site[dot]com/api/ gets forwarded to a reverse proxy at 127.0.0.1:8081.
The 127.0.0.1:8081 site enables vulcain. Vulcain should return Link headers when it detects the header Preload: /api/resource/* if it can find it.
For whatever reason site.com is not receiving all the Link headers back from the proxy.
If i run the following command and hit site.com from outside docker the response only returns 1 Link header.
//Only returns one link header for some reason.
curl -i -H 'Preload: "/departments/*"' https://site.com/api/people/1
//Other headers
Link: <https://site.com/api/docs.jsonld>; rel="http://www.w3.org/ns/hydra/core#apiDocumentation"
If I ssh into the php server and run the following command it returns all the expected link headers.
//When ssh into the php server. It returns the link headers correctly
//curl -i -H 'Preload: "/departments/*"' http://localhost:8081/people/1
HTTP/1.1 200 OK
//Other headers
Link: <http://localhost:8081/docs.jsonld>; rel="http://www.w3.org/ns/hydra/core#apiDocumentation"
Link: </departments/1>; rel=preload; as=fetch
Link: </departments/3>; rel=preload; as=fetch
I’ve tried adding
header_down Link {http.request.header.Link} to my caddy file but it returns Link:;
I’ve also tried header_down +Link {http.request.header.Link} but it returns
I’m not exactly sure whats going on. The proxy is obviously receiving the first Link header, but for whatever reason its not including the others. Can anyone point me into the right direction?
Or, if you only want to focus on your Vulcain instance, you can log its access log - which includes request and response headers - by adding the log directive:
I finally managed to figure out the issue. Vulcain needed to go before the reverse_proxy. The preload='/api/departments/*' had a conflict with header_up X-Forwarded-Prefix /api. It looks like api-platform gets confused with the forward prefx and preload. Changing preload to preload='/departments/*' fixes the issues.
The below CaddyFile works for me now. When sending the Preload headers, I need to omit anything /api. Ie: Preload: /api/department/* is invalid. must be Preload: /department/*
site.com {
tls /certs/certificate.crt /certs/private.key
root * /app/scale-angular/dist/scale/browser
# Proxy /api/* requests to Symfony API (running with vulcain at :8081)
handle_path /api/* {
vulcain
reverse_proxy http://127.0.0.1:8081 {
header_up X-Forwarded-For {http.request.remote}
header_up X-Forwarded-Proto {http.request.scheme}
header_up X-Forwarded-Prefix /api
header_up Prefer {http.request.header.Prefer} # Required for Vulcain support
header_up Preload {http.request.header.Preload} # Required for Vulcain support
}
}
# Fallback for SPA routes
handle {
@notFileOrDir {
not {
file {
try_files {path}
}
}
}
rewrite @notFileOrDir /index.html
file_server
}
}
:8081 {
root * /app/api/public
php_server
}