> For the complete documentation index, see [llms.txt](https://docs.hollaex.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.hollaex.com/advanced/nginx.md).

# Nginx

By default, HollaEx CLI generates Nginx configurations automatically based on user's settings values. Generated files would be stored at `templates/local/nginx` .

You can add your own snippets `templates/local/nginx/nginx.conf.`

### Rate limits

```bash
limit_req_zone $remote_addr zone=api:1m rate=4r/s;
```

In `templates/local/nginx/nginx.conf`, you can see and modify your rate limit setups based on your needs. [Check here](https://www.nginx.com/blog/rate-limiting-nginx/) to see details on how the Nginx rate limit works.

* Both for generic `v2` and `/order` URL endpoints, By default they got `10 bursts.`
