diff --git a/Makefile b/Makefile new file mode 100644 index 0000000000000..aaed3a20869e7 --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +VENV := build/venv +DOCS_OUTPUT_DIR ?= generated/docs + +.PHONY: docs +docs: + rm -fr generated/docs + mkdir -p generated/docs + docs/build.sh $(DOCS_OUTPUT_DIR) diff --git a/docs/configuration/http_conn_man/access_log.rst b/docs/configuration/http_conn_man/access_log.rst index cad9b0d74cbfd..0fe2e7833c52b 100644 --- a/docs/configuration/http_conn_man/access_log.rst +++ b/docs/configuration/http_conn_man/access_log.rst @@ -70,15 +70,15 @@ entry. The following command operators are supported: %FAILURE_REASON% Additional failure reason if any in addition to response code. Possible values are: - * **LH**: Local health check failed. - * **UH**: No healthy upstream. - * **UT**: Upstream request timeout. - * **LR**: Connection local reset. - * **UR**: Upstream remote reset. - * **UF**: Upstream connection failure. - * **UC**: Upstream connection termination. - * **UO**: Upstream overflow (circuit breaking). - * **NR**: No route configured for a given request. + * **LH**: Local service failed :ref:`health check request ` in addition to 503 response code. + * **UH**: No healthy upstream hosts in upstream cluster in addition to 503 response code. + * **UT**: Upstream request timeout in addition to 504 response code. + * **LR**: Connection local reset in addition to 503 response code. + * **UR**: Upstream remote reset in addition to 503 response code. + * **UF**: Upstream connection failure in addition to 503 response code. + * **UC**: Upstream connection termination in addition to 503 response code. + * **UO**: Upstream overflow (:ref:`circuit breaking `) in addition to 503 response code. + * **NR**: No :ref:`route configured ` for a given request in addition to 404 response code. %UPSTREAM_HOST% Upstream host URL (e.g., tcp://ip:port for TCP connections).