Re: Which Upload Module

2021-02-04 Thread pmadr
Thanks. Posted at Nginx Forum: https://forum.nginx.org/read.php?2,290661,290670#msg-290670 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Unit 1.22.0 release

2021-02-04 Thread Valentin V. Bartenev
Hi, I'm glad to announce a new release of NGINX Unit. This is our first release of 2021, and it focuses on improving stability. There's an extensive list of bugfixes, although many occur in rare conditions that have so far been observed only in our test environments. These bugs were caught due t

Getting intermediate client certificates with custom module

2021-02-04 Thread bouvierh
Hello! I am using nginx in reverse proxy mode. When nginx proxy pass the certificates upstream, I would also like to pass the full cert chain along with it. This is for an industrial application and I don't have full control on why it is done this way. The only thing I can tamper with is Nginx.

Re: Which Upload Module

2021-02-04 Thread Sergey A. Osokin
Hi, On Thu, Feb 04, 2021 at 09:37:44AM -0500, pmadr wrote: > Hi, > > There are a few versions of the upload module on github. > > https://github.com/fdintino/nginx-upload-module > https://github.com/Austinb/nginx-upload-module/tree/2.2 > https://github.com/hongzhidao/nginx-upload-module > > Eac

Which Upload Module

2021-02-04 Thread pmadr
Hi, There are a few versions of the upload module on github. https://github.com/fdintino/nginx-upload-module https://github.com/Austinb/nginx-upload-module/tree/2.2 https://github.com/hongzhidao/nginx-upload-module Each has a different commits and issues. Which module do you recommend to use wit

Re: Nginx not responding to port 80 on public IP address

2021-02-04 Thread Francis Daly
On Thu, Feb 04, 2021 at 12:00:53PM +, Adam wrote: Hi there, > > It sounds like something outside of your nginx is preventing the traffic > > from getting to your nginx. > > > > In that case, no nginx config can help you; but there are other things > > you can perhaps look at. > > Do your ngi

Re: Nginx not responding to port 80 on public IP address

2021-02-04 Thread Adam
Hi Francis, I've tried your suggestions (inline replies below) but am still stuck. On Thu, 4 Feb 2021 at 10:06, Francis Daly wrote: > On Thu, Feb 04, 2021 at 07:40:35AM +, Adam wrote: > > Hi there, > > It sounds like something outside of your nginx is preventing the traffic > from getting t

Re: Failed to publish a HLS stream via the nginx HTTPS server with ffmpeg.

2021-02-04 Thread Francis Daly
On Thu, Feb 04, 2021 at 10:25:08AM +0800, Hongyi Zhao wrote: > On Thu, Feb 4, 2021 at 10:03 AM Maxim Dounin wrote: Hi there, > # Watch the stream: > # http: > $ ffplay http://localhost:8000/live/surveillance.m3u8 > # https: > $ ffplay https://localhost:8443/live/surveillance.m3u8 You report tha

Re: Nginx not responding to port 80 on public IP address

2021-02-04 Thread Francis Daly
On Thu, Feb 04, 2021 at 07:40:35AM +, Adam wrote: Hi there, It sounds like something outside of your nginx is preventing the traffic from getting to your nginx. In that case, no nginx config can help you; but there are other things you can perhaps look at. > nginx is running and listening o

Re: nginx virtual directory redirect to a static file

2021-02-04 Thread Francis Daly
On Thu, Feb 04, 2021 at 03:07:27AM -0500, proj964 wrote: Hi there, > Perhaps this is something that can't be done with nginx, but I would like to > have a url, > like http://localhost:nnn/abc return a file from q:/d1/qrst.txt. I'm not certain, from the words here and in the Subject: line, but I

nginx virtual directory redirect to a static file

2021-02-04 Thread proj964
Perhaps this is something that can't be done with nginx, but I would like to have a url, like http://localhost:nnn/abc return a file from q:/d1/qrst.txt. I have tried many combinations of root, alias, rewrite, try_files in location. For everything I try, nginx inserts "abc" into the final absolut

Re: Nginx not responding to port 80 on public IP address

2021-02-04 Thread li...@lazygranch.com
I insist on encryption so this is what I use: server { listen 80; server_name yourdomain.com www.yourdomain.com ; if ($request_method !~ ^(GET|HEAD)$ ) { return 444; } return 301 https://$host$request_uri; } I only serve static pages so I use