unit
unit copied to clipboard
NGINX Unit - universal web app server - a lightweight and versatile open source server that simplifies the application stack by natively executing application code across eight different programming l...
It would be very helpful to log the steps the Unit router takes to find the correct route for an incoming request to the `unit.log`. The idea behind this is...
**Action chaining** enables a [route action](https://unit.nginx.org/configuration/#handling-actions) to be configured as an array of action objects. ```json { "routes": [ { "action": [ { "pass": "applications/auth_check" }, { "pass": "applications/my_app" }...
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...
I'm getting a 503 error when trying to access a php app I don't see any issues reported in the unit log file and the php module is enabled. Is...
Currently it could be hard to find out what `routes` matches given request meta data like `uri`, `hostname`, other HTTP headers, etc. An API endpoint able to match a request...
As per https://datatracker.ietf.org/doc/html/rfc6265#section-4.1.1 cookie-value = *cookie-octet / ( DQUOTE *cookie-octet DQUOTE ) cookie-octet = %x21 / %x23-2B / %x2D-3A / %x3C-5B / %x5D-7E So '=' is a valid character in...
 Happens randomly. Sometimes it is enough to refresh the page. Occurs both in busy time and in idle time. In Unit log - not have detail or error (debug...
Hello, I was unable to find a way to request a response with a specific application match. For example, I'd like to know all the applications that start with domain.com_....
We're looking for the ability to manually specify specific directories to bind mount when isolated to a root. An example of this: ``` "isolation": { "bind_mounts": [{ "src": "/tmp", "dst":...
I've been looking at the Unit configuration for Java: https://unit.nginx.org/configuration/#java However, I can't seem to find a way to enable JMX monitoring with NGINX Unit For example with Tomcat server:...