Can nginx act as a load-balancer for IBM Aspera?

2021-09-29 Thread blason
Hi Team, I am trying to build a reverse proxy as well as load balancer using below link. Can someone please confirm if below scenario can be achieved? I would really appreciate if someone can go through the links and wanted to understand if sticky or persistence connection can be possible with Ngi

Re: WebDAV permission error

2021-09-29 Thread Maxim Dounin
Hello! On Wed, Sep 29, 2021 at 05:43:06PM +, axespam wrote: > I'm sorry but what does that mean? When I right click and delete > a folder I don't enter anything.. Does this go in the config > file? That's up to the WebDAV client you are using. Note well that WebDAV support in nginx is qui

Re: WebDAV permission error

2021-09-29 Thread axespam
I'm sorry but what does that mean? When I right click and delete a folder I don't enter anything.. Does this go in the config file? Original Message On Sep 29, 2021, 12:38 PM, Maxim Dounin < mdou...@mdounin.ru> wrote: Hello! On Wed, Sep 29, 2021 at 05:13:38PM +, axespam wrot

Re: WebDAV permission error

2021-09-29 Thread Maxim Dounin
Hello! On Wed, Sep 29, 2021 at 05:13:38PM +, axespam wrote: > Hello, I am trying to setup a WebDAV share but I am running into an issue. > After I have the WebDAV share created and mounted I can delete files but not > folders. When I try to delete a folder it says I don't have permissions.

Re: Nginx upstream return name instead of server ip

2021-09-29 Thread rjvbzeoibvpzie
Got it! Thanks. Posted at Nginx Forum: https://forum.nginx.org/read.php?2,292491,292502#msg-292502 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Nginx upstream return name instead of server ip

2021-09-29 Thread Maxim Dounin
Hello! On Wed, Sep 29, 2021 at 10:41:20AM -0400, rjvbzeoibvpzie wrote: > You are right, those lines are logged (i've forced upstreams to fail by > stopping them). > > But i can't see such problem using "proxy_pass http://127.0.0.1:81"; instead > of "proxy_pass http://http_backend"; (no more 502

captive portal support

2021-09-29 Thread Lucky Prince
Hi, Does nginx have an official captive portal feature? Or does nginx support a specific captive portal setup? Many thanks, https://apksprofree.com/ Lucky Prince Posted at Nginx Forum: https://forum.nginx.org/read.php?2,292500,292500#msg-292500 ___

WebDAV permission error

2021-09-29 Thread axespam
Hello, I am trying to setup a WebDAV share but I am running into an issue. After I have the WebDAV share created and mounted I can delete files but not folders. When I try to delete a folder it says I don't have permissions. I have given rw access to all. This is the error log from trying to de

Re: Nginx upstream return name instead of server ip

2021-09-29 Thread rjvbzeoibvpzie
You are right, those lines are logged (i've forced upstreams to fail by stopping them). But i can't see such problem using "proxy_pass http://127.0.0.1:81"; instead of "proxy_pass http://http_backend"; (no more 502 errors). Strange... Posted at Nginx Forum: https://forum.nginx.org/read.php?2,29

Re: Nginx upstream return name instead of server ip

2021-09-29 Thread Maxim Dounin
Hello! On Wed, Sep 29, 2021 at 09:43:54AM -0400, rjvbzeoibvpzie wrote: > Well, I was just assuming that no live upstreams were availbale, but this is > not the case. At least, this is not logged (access or error). The "no live upstreams" error is expected to be logged to the error log at the "e

Re: Nginx upstream return name instead of server ip

2021-09-29 Thread rjvbzeoibvpzie
Well, I was just assuming that no live upstreams were availbale, but this is not the case. At least, this is not logged (access or error). Here are the lines from access_log i'm talking about (see the difference on $upstream_addr): log_format main '$remote_addr - $remote_user [$time_local]

Re: ssl_stapling_verify: do we need 'ssl_trusted_certificate' if the intermediate certs are present in ssl_certificate?

2021-09-29 Thread Jeffrey 'jf' Lim
On Wed, Sep 29, 2021 at 9:24 PM Maxim Dounin wrote: > > Hello! > > On Wed, Sep 29, 2021 at 12:47:58PM +0800, Jeffrey 'jf' Lim wrote: > > > http://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_stapling > > has a note about not needing 'ssl_trusted_certificate' if > > ssl_certificate has inter

Re: Nginx upstream return name instead of server ip

2021-09-29 Thread Maxim Dounin
Hello! On Wed, Sep 29, 2021 at 09:20:20AM -0400, rjvbzeoibvpzie wrote: > Here is my config: > > - > upstream http_backend { > server 127.0.0.1:81; > server 10.1.1.2 backup; > } > > server { > ... > > location /http/ { > proxy_pass http://http_backend; > ...

Re: ssl_stapling_verify: do we need 'ssl_trusted_certificate' if the intermediate certs are present in ssl_certificate?

2021-09-29 Thread Maxim Dounin
Hello! On Wed, Sep 29, 2021 at 12:47:58PM +0800, Jeffrey 'jf' Lim wrote: > http://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_stapling > has a note about not needing 'ssl_trusted_certificate' if > ssl_certificate has intermediate certificates. I do not see a similar > note for ssl_staplin

Nginx upstream return name instead of server ip

2021-09-29 Thread rjvbzeoibvpzie
Here is my config: - upstream http_backend { server 127.0.0.1:81; server 10.1.1.2 backup; } server { ... location /http/ { proxy_pass http://http_backend; ... } } - As long as everything is working, $upstream_addr returns the IP (127.0.0.1:81). But wh