diff options
author | Mateus Cruz <mateuscolvr@gmail.com> | 2024-02-05 18:48:47 -0300 |
---|---|---|
committer | Mateus Cruz <mateuscolvr@gmail.com> | 2024-02-05 18:48:47 -0300 |
commit | b2aed14fd4a252d77b7ebaf42407472c47d1c98b (patch) | |
tree | d705b9f371d6d5cdf5018b6036da5749dc35f4f9 /nginx.conf | |
parent | 8878b1d92bdd8ee9b51ecde7e9cc88f62f264841 (diff) |
add logs and fix sql
Diffstat (limited to 'nginx.conf')
-rw-r--r-- | nginx.conf | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ events { - worker_connections 1000; + worker_connections 2000; } http { @@ -16,6 +16,7 @@ http { location / { proxy_pass http://api; + proxy_read_timeout 30; } } } |