-
Notifications
You must be signed in to change notification settings - Fork 474
Closed
Description
Had a working project, Spring boot / Spring data rest / Spring Hateos and after upgrade to Spring boot 2.1.3 it appears that x-forwarded-prefix and x-forwarded-host are not longer working. x-forwarded-proto and x-forwarded-port are working fine.
Broke it out into the simplest possible app demo.tar.gz to check and still couldn't get it working.
If I run
http -v GET localhost:8081
the result is
GET / HTTP/1.1
Accept: */*
Accept-Encoding: gzip, deflate
Connection: keep-alive
Host: localhost:8081
User-Agent: HTTPie/0.9.8
HTTP/1.1 200
Content-Type: application/hal+json;charset=UTF-8
Date: Sat, 09 Mar 2019 18:21:59 GMT
Transfer-Encoding: chunked
{
"_links": {
"people": {
"href": "http://localhost:8081/people{?page,size,sort}",
"templated": true
},
"profile": {
"href": "http://localhost:8081/profile"
}
}
}
all ok so far, however when I try
http -v GET localhost:8081 x-forwarded-proto:https x-forwarded-host:example.com:9090 x-forwarded-port:9090 x-forwarded-prefix:/api
I get
GET / HTTP/1.1
Accept: */*
Accept-Encoding: gzip, deflate
Connection: keep-alive
Host: localhost:8081
User-Agent: HTTPie/0.9.8
x-forwarded-host: example.com:9090
x-forwarded-port: 9090
x-forwarded-prefix: /api
x-forwarded-proto: https
HTTP/1.1 200
Content-Type: application/hal+json;charset=UTF-8
Date: Sat, 09 Mar 2019 18:23:01 GMT
Transfer-Encoding: chunked
{
"_links": {
"people": {
"href": "https://localhost:9090/people{?page,size,sort}",
"templated": true
},
"profile": {
"href": "https://localhost:9090/profile"
}
}
}
I was expecting the links to be of the form https://example.com:9090/api/profile
sbley, beausoft and wangq8
Metadata
Metadata
Assignees
Labels
No labels