# 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.`


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.hollaex.com/advanced/nginx.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
