Quantcast
Channel: Nginx Forum - Nginx Mailing List - English
Viewing all articles
Browse latest Browse all 7229

jpeg image quality is bad (1 reply)

$
0
0
Hi there!

I'm playing around with nginx and I'm running into a problem related to
image uploading. I have nginx as a load balancer and java server (jetty,
spring based) as the backend server. When I upload an image (JPEG) using
POST method via nginx, the quality gets dropped a lot. Please take a look
at the attached image. If I upload it directly to the backend server, it
gets saved properly. Am I missing anything in the conf file? I really
appreciate your help. Here is my nginx.conf.

*http {*
* include /etc/nginx/mime.types;*
* default_type application/octet-stream;*
*
*
* #access_log /dev/null main;*
* access_log /data/logs/nginx/access.log main;*
* log_not_found off;*
*
*
* sendfile on;*
* #tcp_nopush on;*
*
*
* keepalive_timeout 65;*
*
*
* client_max_body_size 10M;*
*
*
*
*
* #gzip on;*
*
*
* include /etc/nginx/conf.d/*.conf;*
*
*
*
*
* upstream backend {*
* ip_hash;*
* server example.com:7070;*
* }*
*
*
*
*
* server {*
* listen 80;*
* server_name example.com;*
*
*
* location / {*
* proxy_pass http://backend;*
* proxy_buffering on;*
* }*
*
*
* }*
*
*
* server {*
* listen 80;*
* server_name ~.*;*
* location / {*
* access_log off;*
* return 503;*
* }*
* }*
*}*

Thanks a lot!

-Praveen
_______________________________________________
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx

Viewing all articles
Browse latest Browse all 7229

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>