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.
内部サーバーからのリクエストのみを制限できるプロジェクトを作成しました(それらのマシン上)。
PHPを使用して内部サーバーからのリクエストを確認する方法はありますか?
内部サーバーから要求された場合にのみ実行できるcronジョブのようなもの。外部サイトからのリクエストがあった場合は、無視してください。
この方法でこれを達成できます
if($_SERVER['REMOTE_ADDR'] != $_SERVER['SERVER_ADDR'] || $_SERVER['REMOTE_ADDR'] != '127.0.0.1') die('Only internal requests are allowed');