Issues with proxy authentication

2021-12-19 Thread ZadaZorg
Ah, cool. looking at it looks like most schemes are named with the capital first letter. You have to create pull request to nim code :)

Issues with proxy authentication

2021-12-18 Thread ZadaZorg
Nim Proxy support only basic authentication. So there is chance, that proxy which fail uses something else. You can verify this by reading Proxy-Authenticate header response from proxy.

Issue when deploying a application with Nginx as a reverse proxy!

2021-06-05 Thread ZadaZorg
Sorry for spamming. Investigated a bit of correct `assumedDescriptorsPerRequest` value. Looks like it requires a single file description to handle a single request (tested by simple curl call). But this does not take into account the fact, that idle processes consume some amount of file descrip

Issue when deploying a application with Nginx as a reverse proxy!

2021-06-05 Thread ZadaZorg
By modifying example in this way: import asynchttpserver, asyncdispatch proc main {.async.} = var server = newAsyncHttpServer() proc cb(req: Request) {.async.} = let headers = {"Date": "Tue, 29 Apr 2014 23:40:08 GMT", "Content-type": "text/plai

Issue when deploying a application with Nginx as a reverse proxy!

2021-06-05 Thread ZadaZorg
OK, maybe the correct answer will be... To solve this issue, which is typical for every high load HTTP server, you have to modify the limits of your OS. Check current limit: `ulimit -n` Set new limit: `ulimit -S -n `. This change is not persistent, and to make it persistent, you have to apply

Issue when deploying a application with Nginx as a reverse proxy!

2021-06-05 Thread ZadaZorg
Not clear, what is the problem you raised? Why with Nginx there are "Too many open files"? Because when you use a proxy, you double the requirements for open sockets (files), and in this case, you faster meet limits. Why program crash? Because there is an unhandled exception :)

thread vscode error juste is normal

2020-12-11 Thread ZadaZorg
Meet with same issue, solution is in

hard to load this forum

2020-08-03 Thread ZadaZorg
I also have issues with forum, when grammarly extension in FF is active. It is not possible to post form. Have toisable it. There isom JS errors in console.