> For the complete documentation index, see [llms.txt](https://linkis-organization.gitbook.io/v2boar-zero-theme/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://linkis-organization.gitbook.io/v2boar-zero-theme/shi-yong-jiao-cheng/dong-tai-api.md).

# 动态API

## 一、功能介绍

使用该功能可以客制化你的api路径。

## 二、如何使用

以下配置是将路径修改为 `zero` 的示例，实际使用请自行修改。

### 1. 配置服务器nginx

```nginx
location /zero
{
    proxy_pass http://127.0.0.1:7001/api/v1;
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header REMOTE-HOST $remote_addr;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection $connection_upgrade;
    proxy_http_version 1.1;
}
```

### 2. 修改api\_base配置

将原版的 `https://xxxx.xx/api/v1` 修改为 `https://xxxx.xx/zero`

### 3. 测试访问

使用浏览器访问 `https://xxxx.xx/zero/guest/comm/config`

检查是否获得返回数据。


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://linkis-organization.gitbook.io/v2boar-zero-theme/shi-yong-jiao-cheng/dong-tai-api.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
