NGINX send 206 but wget retries

2019-08-02 Thread Roger Fischer
Hello, I am making a byte range request to NGINX using wget. NGINX responds with status code 206 (partial content), but instead of downloading the content, wget retries. Request: wget -S 'http://cache.example.com/video5.ts' --header="Range: bytes=0-1023" Output from wget: --2019-08-02 15:36:

Re: Setting Charset on Nginx PHP virtual host

2019-08-02 Thread Francis Daly
On Fri, Aug 02, 2019 at 03:11:05PM +0200, Vincent M. wrote: Hi there, > So I tried in http with empty charset_map: >         charset_map iso-8859-1 utf-8 { } > But special characters like é are displayed with ? It seems to work for me as-is. What is different for you? "work for me" means "the u

Re: Nginx and conditional logformat

2019-08-02 Thread Francis Daly
On Fri, Aug 02, 2019 at 04:34:37AM -0400, cell...@gmail.com wrote: Hi there, > I need to use if to configure some behavior during the ssl client > authentication because it's enabled at server block and we need to exclude > some locations from the authentication. The report I thought I was respo

Re: Setting Charset on Nginx PHP virtual host

2019-08-02 Thread Vincent M.
Hello Francis, You are right, the charset map is missing and specified in the nginx log error file: /2019/08/02 12:53:42 [error] 19151#19151: *28013 no "charset_map" between the charsets "UTF-8" and "iso-8859-1" while reading response header from upstream, client: .../ I have found 3 chars

Re: Nginx and conditional logformat

2019-08-02 Thread cell...@gmail.com
Hi Francis, I need to use if to configure some behavior during the ssl client authentication because it's enabled at server block and we need to exclude some locations from the authentication. Marcello Posted at Nginx Forum: https://forum.nginx.org/read.php?2,284984,285085#msg-285085 __