Nginx manage multiple https website with keepalived

2017-12-30 Thread linbo liao
I already submit an issue in keepalived github issue page and stackoverflow. Paste again for more people's help. I want to use Nginx to manager multiple https website, refer to nginx document

When will primary server come back in http upstream module?

2017-06-21 Thread linbo liao
Hi, Refer to http://nginx.org/en/docs/http/ngx_http_upstream_module.html#server , if all primary server are unavailable, backup server will handle request. I have two question? 1. What's the meaning of unavailable? 2. When will primary server come back, after fail_timeout? Thanks, Linbo __

Re: Location url start with modifier, nginx -t pass the configuration test

2017-02-11 Thread linbo liao
Thank you for the clarification. 2017-02-10 20:45 GMT+08:00 Maxim Dounin : > Hello! > > On Fri, Feb 10, 2017 at 01:31:34PM +0800, linbo liao wrote: > > > I setup an test Nginx 1.10.3 on local VM (Centos 6.7 x86_64). I configure > > the following location >

Location url start with modifier, nginx -t pass the configuration test

2017-02-09 Thread linbo liao
Hi, I setup an test Nginx 1.10.3 on local VM (Centos 6.7 x86_64). I configure the following location location =/404.html { root/usr/share/nginx/html; } As my understanding, it is not an valid url, but `nginx -t` pass the configuration test. Is it a bug ? ___