Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: upload module 2.0.4
maxhl@xxxxxxxxxxxxxx писал:
> Подскажите как его совместить с php-fpm ?
> Файл аплоадится в пхп скрипт.
[... config skipped ...]
> __________________________________________________________________
> Достаточно ли будет добавить в локейшен
> ?
Нет, нужен выделенный локешн:
# Форма загрузки файлов должна
указывать сюда
location = /upload {
#
# Этот скрипт должен осуществлять
всю постобработку
#
# Для безопасности скрипт
необходимо поместить в отдельный
# локейшн и объявить его internal
#
upload_pass /upload.php;
> # Store files to this location
> upload_store /mnt/md0;
> # Set specified fields in request body
upload_set_form_field "${upload_field_name}_name"
"$upload_file_name";
upload_set_form_field "${upload_field_name}_content_type"
"$upload_content_type";
upload_set_form_field "${upload_field_name}_path"
"$upload_tmp_path";
> # Pass matching fields from client to backend
> upload_pass_form_field "^submit$|^description$";
}
--
Best regards,
Valery Kholodkov
|