次のルールでは、phpはredirect
別のファイルを作成できません。私のphpスクリプトに到達した、header("Content-type: video/x-flv");
header("Location:" . $VIDEO);
またはget_headers();
PHPスクリプト上にある可能性がある時点でフリーズします。
私のiptables:
iptables -L
Chain INPUT (policy ACCEPT)
target prot opt source destination
ACCEPT tcp -- anywhere anywhere tcp dpt:22151
ACCEPT tcp -- anywhere anywhere tcp dpt:http
ACCEPT all -- anywhere anywhere
ACCEPT tcp -- anywhere anywhere tcp dpt:webcache
ACCEPT tcp -- anywhere anywhere tcp spt:webcache
ACCEPT tcp -- anywhere anywhere tcp spt:http
DROP all -- anywhere anywhere
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
私が試したこと
iptables -A INPUT -p ICMP --icmp-type 8 -j ACCEPT
DROP all -- anywhere anywhere
すべてを削除するとすぐに正常に動作します。
PHPはiptablesとは何の関係もありません...そして、iptablesはhttpセッションの内容を見ません。存在しないものを把握していると思います。
—
TheCompWiz