我正在尝试设置 nginx 下载只允许有扩展名我有静态文件 .txt .kvm 并且有些文件没有扩展名/var/www/download/
我试图(.txt .kvm etc *.*)
通过 nginx 和其他所有没有扩展名的文件下载允许直接下载
我怎么能在 nginx.conf 中做到这一点
我的 nginx.conf
server {
listen 8000;
listen somename:8080;
server_name somename alias another.alias;
location / {
root /var/www/download;
index index.html index.htm;
}
}