# 动态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: 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://linkis-organization.gitbook.io/v2boar-zero-theme/shi-yong-jiao-cheng/dong-tai-api.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.
