Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
フロントエンド (トルネード) と静的ファイル サーバー (nginx) の 2 つのサーバーがあります。リクエストがフロントエンドからリダイレクトされた場合にのみ、静的ファイルサーバーからファイルにアクセスする方法を知っている人はいますか? 要求が静的ファイル サーバーに対して直接行われた場合、要求は拒否されます。
変数を確認できます: $http_referer:
$http_referer
if ($http_referer !~ "^http://server_1.com.*$"){ return 403; }