「static.domain.com」が画像のみを提供できるようにnginxを設定しようとしています。これは私が思いついたものですが、より効率的に行うことができることを私は知っています。誰かが.htm、.php、ディレクトリ(他に足りないものはありますか?)ファイルにアクセスしようとした場合、403.htmlを提供したいと思います。もちろん、403.htmファイルとstatic.htmファイルは例外です。
これを適切に保護する方法はありますか?
server {
listen xx.xx.xx.xx:80;
server_name static.domain.com;
root /www/domain.com/httpdocs;
index static.htm;
access_log off;
error_log /dev/null crit;
error_page 403 /403.html;
# Disable access to .htaccess or any other hidden file
location ~ /\.ht {
deny all;
}
location ~* \.php {
deny all;
}
# Serve static files directly from nginx
location ~* \.(jpg|jpeg|gif|png|bmp|ico|pdf|flv|swf|exe|html|htm|txt|css|js) {
add_header Cache-Control public;
add_header Cache-Control must-revalidate;
expires 7d;
}
}