问题标签 [x-forwarded-for]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
0 回答
14 浏览

php - 允许基于 X-FORWARDED-FOR 在 htaccess 中访问子目录

我的网站中有一个文件夹,例如https://example.com/xyz/asd

我想限制 asd 文件夹的所有文件和文件夹。

我们正在使用负载均衡器,它只在访问日志中提供负载均衡器的 IP 地址。

我已将此 .htaccess 文件放在 asd 文件夹中。

我使用基于 HTTP:X-FORWARDED-FOR 的 Allow access in htaccess 中的此解决方案,但它不适用于我的情况。

0 投票
1 回答
19 浏览

java - 如何在 spring-data-rest 链接中重写应用程序的基本 URL?

我的公司使用 API 网关来转换 URL,如下所示,同时修改资源的主机名和基本路径: https://apigateway.mycompany.com/myapp/foo -> https://myapp.mycompany.com/foo

在 Spring Data REST 中,应用程序希望使用https://myapp.mycompany.com/foo. 如何自定义应用程序以强制它为所有rel属性生成 API 网关链接?

我想更改链接的呈现方式,而不更改 myapp.mycompany.com 服务器上这些资源的实际路径。我检查了关于自定义的文档部分,rel但它似乎没有涵盖这个用例。

我该怎么办?