Andrew Clayton

Results 552 comments of Andrew Clayton

On Sat, 13 Jan 2024 03:28:01 -0800 andrey-zelenkov ***@***.***> wrote: > Hi @maaarghk, > > In the discussions https://github.com/nginx/unit/issues/590 and https://github.com/nginx/unit/issues/651, real-world use cases emerged that led to issues which...

That's a pretty vague and generalised statement. I suppose you have some facts to back that up? Given the way Unit works, I am however struggling to see under which...

On Mon, 15 Jan 2024 06:00:03 -0800 andrey-zelenkov ***@***.***> wrote: > > That's a pretty vague and generalised statement. I suppose you have some facts to back that up? >...

AFAICT we only need to set SCRIPT_NAME to an empty string, would need to check, but we _may_ be able to do that once at module initialisation...

Yes, we do something like that for PHP so you can hit /path/to/index.php/some/internal/path and get SCRIPT_NAME = "/path/to/index.php" PATH_INFO = "/some/internal/path" I'm not sure that makes sense for Perl under...

Hmm, OK, so I don't think we can set this automatically, looks like we _will_ need something like a _prefix_ option like we have in Python (not sue why we...

Hey folks! Here's an initial implementation of `SCRIPT_NAME` for Perl. Better late than never! Here's the patch for interest/testing... ```diff diff --git a/src/nxt_application.h b/src/nxt_application.h index f5d7a9df..f00a3a4b 100644 --- a/src/nxt_application.h +++...

@malsatin From [here](https://www.php.net/manual/en/function.set-time-limit.php) > Note: > The set_time_limit() function and the configuration directive [max_execution_time](https://www.php.net/manual/en/info.configuration.php#ini.max-execution-time) only affect the execution time of the script itself. Any time spent on activity that happens...

OK, so I'll cut straight to the chase. **Unit development is on indefinite hiatus.** Admittedly this may not be entirely clear as we currently have from the [README](https://github.com/nginx/unit/blob/master/README.md) A repostatus...

> I'm fine with it. It can be a separate fix. It it's in a separate PR then it's not reliant on getting this whole thing in... > > I...