Re: 13: Permission denied while connect server using https through nginx

2015-02-02 Thread Igor Sysoev
On 03 Feb 2015, at 09:31, malintha wrote: > My nginx configurations are as follows. I am going to connect running server > UI from my machine through nginx. > > server { > listen 443; > server_name mgt.wso2bps.malintha.com; > ssl on; > ssl_certificate /etc/nginx/ssl/wso2bps.crt;

13: Permission denied while connect server using https through nginx

2015-02-02 Thread malintha
Hi, My nginx configurations are as follows. I am going to connect running server UI from my machine through nginx. server { listen 443; server_name mgt.wso2bps.malintha.com; ssl on; ssl_certificate /etc/nginx/ssl/wso2bps.crt; ssl_certificate_key /etc/nginx/ssl/wso2bps.key;

Re: buffering / uploading large files

2015-02-02 Thread nginxuser100
Hi, the situation that I am trying to solve is what happens if the client's request is larger than the configured client_max_body_size. Turning off buffering by nginx should resolve the problem as nginx would forward every packet to the back-end server as it comes in. Did I misunderstand the purpos

subrequest cycle cause cpu 100%

2015-02-02 Thread xinghua_hi
hello, I use error_page = /500.html to show myself 500 page, and for some reason, I need ssi include in 500.html, for example: 500.html if fastcgi upstream return 500 response code, it will cause subrequest cycle, a set number of

Re: Intermittent SSL Handshake Errors

2015-02-02 Thread tempspace
My first question is do these I have been fighting a similar issue with SSL handshake issues for the past few days. After reboots and upgrades for GHOST, we started seeing errors like this in our error logs constantly: *579 SSL_do_handshake() failed (SSL: error:140A1175:SSL routines:SSL_BYTES_TO_

Re: Intermittent SSL Handshake Errors

2015-02-02 Thread ericr
Prior to this issue starting, we had not changed our ciphers in several months. I have tried changing them once since. We have also tried restarting nginx several times on each server to clear the cache, but it has not helped. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,256373,256406

Re: buffering / uploading large files

2015-02-02 Thread B.R.
http://nginx.org/en/docs/http/ngx_http_core_module.html#client_max_body_size --- *B. R.* On Mon, Feb 2, 2015 at 7:35 AM, nginxuser100 wrote: > Thanks Kurt. > > The patch compiled and got installed fine. I no longer get an unknown > directive error msg. However, the client's POST request of 1.5M

How to Handle "data sent" or "connection closed" event in Module ?

2015-02-02 Thread tigran.bayburtsyan
Hi. I'm developing Nginx module where I need to handle some function when all data have been sent to client or when client closed the connection. For example I have ngx_http_finalize_request(r, ngx_http_output_filter ( r , out_chain )); Where out_chain contains over 700KB of data. I can't find whe