Warning: session_start(): Cannot start session when headers already sent in /home/users/web13/6/9/0260296/mig_temp/private/class/basic/HTML.php on line 13

Warning: Cannot modify header information - headers already sent by (output started at /home/users/web13/6/9/0260296/www.mippy.jp/autoload.php:25) in /home/users/web13/6/9/0260296/mig_temp/private/class/basic/HTML.php on line 55
lighttpd.conf - lighttpd - reference - Mippy !!

lighttpd.conf

Lighttpdのアクセス制限やログファイルについて

System

lighttpd.conf

$HTTP["url"]と$HTTP["remoteip"]による制限

$HTTP["remoteip"]は、「192.168.0.0/24(192.168.0.0~192.168.0.255)」などの「CIDR (Classless Inter-Domain Routing)」によるIPアドレスの範囲は「==」と「!=」で有効。

※「=~」や「!~」は正規表現になるため「CIDR」は使用できない

$HTTP["url"]=~"path"{ $HTTP["remoteip"]!="192.168.0.0/24"{ url.access-deny=("") } }

最終更新日