Displaying 1 result from an estimated 1 matches for "source_charset".
2013 Sep 23
0
400 bad request
...know if problem come from rails or from nginx. For first url, I
solved it in nginx conf
here part of my conf
access_log /var/log/nginx/gancx.access.log;
error_log /var/log/nginx/gancx.error.log;
client_body_in_file_only clean;
client_body_buffer_size 32K;
charset UTF-8;
source_charset UTF-8;
client_max_body_size 300M;
error_page 400 404 = @notfound;
error_page 500 502 504 = @server_error;
error_page 503 = @maintenance;
location @notfound {
rewrite ^(.*)$ $scheme://$host permanent;
}
location @server_error {
rewrit...