diff --git a/README.md b/README.md index f6be4910..867a37fe 100644 --- a/README.md +++ b/README.md @@ -50,10 +50,26 @@ avoid any timeout response ```sh /etc/nginx/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 +| 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` | +| client_max_body_size | `10M` | no condition | `http` | + + **Configuration** + +change php.ini through this path + + ```sh + /etc/php/8.1/fpm/php.ini + ``` + +set this values + +| Variable | Value | Condtion | Context | +|:-------------------:|:-----:|:------------:|:-------------:| +| post_max_size | `10M` | no condition | fpm : php.ini | +| upload_max_filesize | `10M` | no condition | fpm : php.ini | \ No newline at end of file