Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove X-Host-* special headers #31

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@
public class ProxyService {
private static final String X_REQUEST_ID = "X-Request-Id";
private static final String OCP_APIM_SUBSCRIPTION_KEY = "Ocp-Apim-Subscription-Key";
private static final String X_HOST_URL = "X-Host-Url";
private static final String X_HOST_PORT = "X-Host-Port";
private static final String X_HOST_PATH = "X-Host-Path";

@Value("${certificate.crt}")
private String certificate;
Expand Down Expand Up @@ -92,6 +95,9 @@ public ResponseEntity<String> processProxyRequest(
headers.set(HttpHeaders.HOST, xHostUrl);
headers.remove(HttpHeaders.ACCEPT_ENCODING);
headers.remove(OCP_APIM_SUBSCRIPTION_KEY); // remove subkey's header
headers.remove(X_HOST_URL); // remove x-host-*'s header
headers.remove(X_HOST_PORT); // remove x-host-*'s header
headers.remove(X_HOST_PATH); // remove x-host-*'s header

// construct URI for the request
xHostPath = xHostPath.startsWith("/") ? xHostPath : String.format("/%s", xHostPath);
Expand Down
Loading