我正在尝试在 nginx 中设置一个虚拟位置,以便从目录中提供大型静态文件。主应用程序是一个 symfony2 程序。
我想做的是有一个 url,您可以在其中指定 GET 参数中的文件路径,这样 nginx 可以直接将文件提供给客户端。
在我的示例中,位置将是 /getfile
这是我到目前为止的配置
server
{
listen 80;
server_name website_url;
set $path_web /myapp/webdir;
client_max_body_size 200m;
location /getfile {
root /path_to_dir;
if ($args ~ ^oid=(.*+)) {
set $key1 $1;
rewrite ^.*$ $key1;
}
}
location ~ \.php($|/)
{
set $script $uri;
set $path_info "";
if ($uri ~ "^(.+\.php)(.*)") {
set $script $1;
set $path_info $2;
}
fastcgi_pass unix:/tmp/php-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $path_web$script;
fastcgi_param SCRIPT_NAME $script;
fastcgi_param PATH_INFO $path_info;
include /etc/nginx/conf.d/fastcgi.conf;
}
root $path_web;
index app.php app_dev.php;
location /
{
set $idx_file app.php;
if ($args ~ debug=true) {
set $idx_file app_dev.php;
}
if ( !-f $request_filename) {
rewrite ^(.*)$ /$idx_file last;
}
}
location ~ /\.ht
{
deny all;
}
# logs path
access_log /path_to_logdir/access.log main;
error_log /path_to_logdir/error.log;
}