help need (convert vhost to location)

2020-12-15 Thread Gregory Edigarov
Hello everybody, I have this server section: server {     server_name postmaster.example.com;     listen 80;     access_log   /var/log/nginx/vexim-access.log;     error_log    /var/log/nginx/vexim-error.log;     root /var/www/vexim/vexim;     index index.php index.htm index.html;     location

Nginx not reloading after SIGHUP in freebsd

2020-12-15 Thread Luciano Mannucci
Hello all! If I issue a "kill -s HUP" from root to the pid I find on my freeBSD machine it does'nt reload the configuration. If I issue a "service nginx reload" it does. Is it normal? Here is the output of my "pkg info nginx" which shoud carry all the relevant informations: nginx-devel-1.19.3_

Re: Nginx not loading different certs on two hosts

2020-12-15 Thread Nikolaos Milas
On 12/12/2020 2:54 π.μ., Maxim Dounin wrote: Glad it works now, and hope the previous behaviour is clear now as well: it is a result of no IPv4 listening socket on port 443 in the second vhost in the original configuration. Thank you Maxim, I appreciate your detailed explanation and all your

nginx-1.19.6

2020-12-15 Thread Maxim Dounin
Changes with nginx 1.19.615 Dec 2020 *) Bugfix: "no live upstreams" errors if a "server" inside "upstream" block was marked as "down". *) Bugfix: a segmentation fault might occur in a worker process if HTTPS was used; the bug had appea

Implement Digest authentication on Nginx behind a proxy

2020-12-15 Thread kev jr
Hi everyone, I try to implement digest authentication on Nginx. The architecture is the following : Server A is the client Server B is the proxy (a API solution which only transmits the request as a proxy) Server C is my Nginx server where I configure the Digest authentification I have the foll

Re: Http_v2 dynamic module

2020-12-15 Thread Maxim Dounin
Hello! On Tue, Dec 15, 2020 at 08:51:21AM -0500, Flinou wrote: > I would like to build http_v2 module as a dynamic one. I noticed on the > internet that some built-in modules can be built as dynamic > (http_xslt_module for example) but it does not work the same way for > http_v2. > > Is there an

Http_v2 dynamic module

2020-12-15 Thread Flinou
Hello, I would like to build http_v2 module as a dynamic one. I noticed on the internet that some built-in modules can be built as dynamic (http_xslt_module for example) but it does not work the same way for http_v2. Is there any way to build this module as a dynamic one ? Thank you in advance,