At-least on my system ARG_MAX depends on the size of ulimit.
# getconf ARG_MAX
2097152
# ulimit -s unlimited
# getconf ARG_MAX
4611686018427387903
Meaning no kernel recompilation should be necessary to adjust the maximum
argument space.
On Thu, 29 Apr 2021 at 07:13, Maxim Dounin wrote:
> Hello
Hi Eric,
hope you're doing well these days.
On Wed, Apr 28, 2021 at 07:52:48PM +, Eric Speake wrote:
>
> I need to redirect https://mysite.com/meeting to
> https://new.mysite.com/events/meet/meeting
...
The following one should work:
location ~ ^/meeting {
return 301 https://
Hello!
On Tue, Apr 27, 2021 at 12:35:58PM +0200, Charlie Kilo wrote:
> Hi everyone,
> i'm trying to upgrade an nginx-binary while running.
> When i do kill -s USR2 , i get the following error in the logs..
>
> 11:40:38 [alert] 52701#0: execve() failed while executing new binary
> process "/opt/s
I need to redirect https://mysite.com/meeting to
https://new.mysite.com/events/meet/meeting
Here us what I have in my config:
location ~* / {
#Custom Redirects
rewrite ^(/meeting.*) https://new.mysite.com/events/meet$1 permanent;
}
I have tried a few other tweaks, but nothing is wor
On Tue, Apr 27, 2021 at 12:35:58PM +0200, Charlie Kilo wrote:
Hi there,
I don't know the answer here, but...
> i'm trying to upgrade an nginx-binary while running.
> When i do kill -s USR2 , i get the following error in the logs..
>
> 11:40:38 [alert] 52701#0: execve() failed while executing ne