企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
``` #当客户端访问www.test.com,监听端口号为80,直接跳转到data/www目录下文件 server { listen 80; server_name www.test.com; location / { root data/www; index index.html index.htm; } } ```