Приветствую,
Кто-нить прокидывал через nginx ceph хранилище, чтобы через браузер он отдавал файлы в расширениях? В данным момент он возвращает поток иероглифов в браузере, а не файл, трабла с кодировкой?
location /wap-outer/Equipments {
if ($request_method = 'OPTIONS') {
add_header 'Access-Control-Allow-Origin' "$http_origin";
add_header 'Access-Control-Allow-Credentials' 'true';
add_header 'Access-Control-Allow-Methods' 'GET, POST, PUT, >>OPTIONS';
add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-
Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range,X-CSRF-TOKEN,X-Captcha';
add_header 'Access-Control-Max-Age' 1728000;
add_header 'Content-Type' 'text/plain; charset=utf-8';
add_header 'Content-Length' 0;
return 204;
}
add_header 'Access-Control-Allow-Origin' "$http_origin";
add_header 'Access-Control-Allow-Credentials' 'true';
add_header 'Access-Control-Allow-Methods' 'GET, POST, PUT, >>OPTIONS';
add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range,X-CSRF-TOKEN,X-Captcha';
add_header 'Access-Control-Expose-Headers' 'Content-Length,Content-Range,X-Captcha';
rewrite /wap-outer/attachment/(.*) /ceph-wrapper/requests/attachment/$1 break;
proxy_redirect off;
proxy_set_header Host $host;
proxy_pass http://192.168.1.10;
Заранее спасибо всем.