Need help on proxy passing

I experience an issue on missing some part of the page (Long page) on
passing proxy requests. Please help me to solve this. Thank You. My
configuration file is as follow.
server {
root /usr/share/nginx/www;
index index.html index.htm;
server_name localhost;
location / {
proxy_pass https://127.0.0.1:3000/;
}
location /doc {
root /var/www;
autoindex on;
allow 127.0.0.1;
deny all;
}
location /images {
root /usr/share;
autoindex off;
}
}
server {
listen 443 default_server;
server_name chamithlkml.com;
ssl on;
ssl_certificate /etc/nginx/server.crt;
ssl_certificate_key /etc/nginx/server.key;
ssl_session_cache shared:SSL:10m;
ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv3:+EXP;

location / {
proxy_pass https://127.0.0.1:3000/;
proxy_set_header Host $host;
proxy_redirect http:// https://;
}
}

Chamith Jayaweera
Software Engineer,
Cyber LMJ.
Mobile (+94)77 299 9492

Hello!

On Sat, Jun 01, 2013 at 10:42:37AM +0530, chamith Jayaweera wrote:

I experience an issue on missing some part of the page (Long page) on
passing proxy requests. Please help me to solve this. Thank You. My
configuration file is as follow.

By “missing some part” do you mean the page is truncated? In most
cases this is caused by incorrect access rights on proxy_temp_path
directory. Try looking into error_log to see if there is anything
there.


Maxim D.
http://nginx.org/en/donation.html