From 29ad5023717f4ddb0addb5ad49e6bd0826509568 Mon Sep 17 00:00:00 2001 From: Hasan Zaki Date: Wed, 2 Oct 2024 12:08:44 +0000 Subject: [PATCH] Update README.md --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 7e61b167..7e058cbe 100644 --- a/README.md +++ b/README.md @@ -46,3 +46,17 @@ optimize MariaDB configuration through this path . |innodb_log_buffer_size | `256M` | no condition | `>=10.11` | |innodb_thread_concurrency | `32` | no condition | `>=10.11` | |innodb_stats_on_metadata | `OFF` | no condition | `>=10.11` | + +### Ngnix configuration +change Ngnix configuration through this path in order to +avoid any timeout response + ```sh + /etc/ngnix/sites_available/exmapl.com + ``` +| Variable | Value | Condtion | Context | +|:---------------------------------:|:--------:|:------------------------------------------------------------------:|:-----------------------:| +| proxy_connect_timeout | `120` | no condition | `http, server, location`| +| proxy_send_timeout | `120` | no condition | `http, server, location`| +| proxy_read_timeout | `120` | no condition | `http, server, location`| +| send_timeout | `120` | no condition | `http, server, location`| +| fastcgi_read_timeout | `300` | no condition | `location` | \ No newline at end of file