Andrew Clayton
Andrew Clayton
Firstly, this is not to be confused with CLONE_NEWCGROUP which unit already supports and is related to namespaces. To re-cap, namespaces allow processes to have different views of various parts...
@alejandro-colomar reported an issue on GitHub whereby Unit would fail to start due to not being able to create the control socket (a Unix Domain Socket) 2022/08/05 20:12:22 [alert] 21613#21613...
This pull request has been updated and expanded on. It now consists of five commits - Docs: update changelog for some new settings. - Router: remove unused proxy_buffers structure member....
@JanMikes and @tagur87 on GitHub both reported issues with long URLs that were exceeding the 8192 byte large_header_buffer_size setting, which resulted in a HTTP 431 error (Request Header Fields Too...
Currently the unit php module returns either a 500 'Internal Service Error' or 503 'Service Unavailable' in various scenarios. E.g trying to access a directory that doesn't exist (or doesn't...
This is set in src/nxt_php_sapi.c ```C 1373: nxt_php_set_cstr(req, "SERVER_PORT", "80", 2, track_vars_array TSRMLS_CC); ``` Once the patch from https://github.com/nginx/unit/issues/753#issuecomment-1258842715 is committed we will be able to use the _local_port_ member...
### Discussed in https://github.com/nginx/unit/discussions/1100 Originally posted by **bunny-therapist** January 29, 2024 I am running a FastAPI app using nginx unit, and using a python script to send multiple sequential (wait...
You can use the Docker Makefile to create dockerfiles for specific language environments, e.g $ make build-python3.12 VERSIONS_python=3.12 However this breaks when trying to do something like $ make build-php8.3.0RC6...
When compiling with GCC and -Og we get the following warnings ``` cc -c -pipe -fPIC -fvisibility=hidden -Og -W -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wmissing-prototypes -g -I src -I build/include \...
As @hongzhidao suggested > The only question is if we need to add a BB test or not. Do we want a BB with say, Alpine Linux + clang? >...