Re: PR_END_OF_FILE_ERROR after kernel update

2019-10-03 Thread lists
You could test the cert using SSL labs. https://www.ssllabs.com/ You might have a drop your firewall if it doesn't work at first. It never hurts to do dumb stuff like boot the server again.   Original Message   From: wiz...@bnnorth.net Sent: October 3, 2019 8:55 PM To: nginx@ngi

PR_END_OF_FILE_ERROR after kernel update

2019-10-03 Thread Ken Wright
I hope someone more knowledgeable than I am can help here. A day or two ago I ran some routine updates on my Ubuntu Server 18.04.  No big deal, right?  The only unusual thing was the kernel updated as well, but I've updated the kernel on this machine many times before with no problems.  This time,

Re: Nginx Reverse Proxy Lowercase URL and some exceptions to the URL

2019-10-03 Thread Francis Daly
On Thu, Oct 03, 2019 at 01:03:01PM -0400, Alex Med wrote: Hi there, > I also would like to add that when I access: example.com/API/ it is > lowercased to example.com/api/. According to my configuration it should > not. So it means location #1 is not working properly. Why do you think that? M

Re: Nginx Reverse Proxy Lowercase URL and some exceptions to the URL

2019-10-03 Thread Francis Daly
On Thu, Oct 03, 2019 at 12:21:29PM -0400, Alex Med wrote: Hi there, > Location #1 > location ~ > ^/(api|contentAsset|categoriesServlet|DotAjaxDirector|html|dwr|dA)/ {} > > Location #2 > This location does the lowercasing > location ~ [A-Z] { return 301 $scheme://$host$my_uri_to_lowercase;} >

Re: Nginx Reverse Proxy Lowercase URL and some exceptions to the URL

2019-10-03 Thread Alex Med
I also would like to add that when I access: example.com/API/ it is lowercased to example.com/api/. According to my configuration it should not. So it means location #1 is not working properly. Alex Med Wrote: --- > Dear Francis: > > Here a

Unit 1.12.0 release

2019-10-03 Thread Valentin V. Bartenev
Hi, I'm glad to announce a new release of NGINX Unit. This is an ad-hoc release that focuses on fixing several annoying bugs and adds compatibility with the upcoming PHP 7.4, scheduled for release on November 28, 2019. Changes with Unit 1.12.0 03 Oct 2019

Re: Nginx Reverse Proxy Lowercase URL and some exceptions to the URL

2019-10-03 Thread Alex Med
Dear Francis: Here are the answers to your questions. Thank YOU for helping! The location block are in the following order: Location #1 location ~ ^/(api|contentAsset|categoriesServlet|DotAjaxDirector|html|dwr|dA)/ {} Location #2 > This location does the lowercasing location ~ [A-Z] { retu

Re: Nginx Reverse Proxy Lowercase URL and some exceptions to the URL

2019-10-03 Thread Francis Daly
On Thu, Oct 03, 2019 at 11:36:27AM -0400, Alex Med wrote: Hi there, > 1- this location is not respected since the configuration lowercases all > uris without respecting these locations. Please note that api, > contentAssets, categoryServlet are paths, not directories or folders. Which part of t

Nginx Reverse Proxy Lowercase URL and some exceptions to the URL

2019-10-03 Thread Alex Med
I have the following server configuration. I have two problems that I would appreciate if someone can tell me what I am doing wrong: 1- this location is not respected since the configuration lowercases all uris without respecting these locations. Please note that api, contentAssets, categoryServ

Re: proxy http requests to different port numbers?

2019-10-03 Thread Francis Daly
On Thu, Oct 03, 2019 at 09:14:35AM -0400, lvic4594 wrote: Hi there, > The same thing happens if i have both http and https in the same server > block, which is the only one in config: What "same thing", specifically? What request do you make; what response do you get; what response do you want

Re: proxy http requests to different port numbers?

2019-10-03 Thread lvic4594
The same thing happens if i have both http and https in the same server block, which is the only one in config: server { listen 80; listen 443 ssl; server_name _; ssl_certificate myserver.crt; ssl_certificate_key myserver.key; root