Я использую XenForo, и есть небольшая проблема — я не могу загрузить файлы в / var / www / internal_data / attachments / 0;
Это полностью chmod’ed до 0777 ‘.
Я не знаю, я пытался использовать переписать, но все равно я получаю ошибку загрузки.
Вот мой файл по умолчанию для конфигурации nginx:
server {
listen 80;
listen [::]:80 default ipv6only=on;
server_name domain www.domain.com;
root /var/www;
index index.html index.htm index.php;
location / {
try_files $uri $uri/ =404;
}
error_page 403 404 405 /40x.html;
location /40x.html {
root /somepath;
internal;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /somepath;
internal;
}
location ~ \.php$ {
root /var/www;
index index.php;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
location ~ /\.ht {
deny all;
}
}client_max_body_size 50M;#POST URLn
location /var/www/ {
# Pass altered request body to this location
upload_pass @after_upload;
# Store files to this directory
upload_store /var/www/internal_data/attachments/0;
# Allow uploaded files to be read only by user
upload_store_access user:rw;
# 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”;
# Inform backend about hash and size of a file
upload_aggregate_form_field “$upload_field_name.md5” “$upload_file_md5”;
upload_aggregate_form_field “$upload_field_name.size” “$upload_file_size”;
#upload_pass_form_field “some_hidden_field_i_care_about”;
upload_cleanup 400 404 499 500-505;
}
location / {
root /var/www;
}location @after_upload {
proxy_pass http://127.0.0.1:8888;
}
}
}
Что там не так? Спасибо за ответы.
Задача ещё не решена.
Других решений пока нет …