# 电子导览3 **Repository Path**: wyc520/guide-3 ## Basic Information - **Project Name**: 电子导览3 - **Description**: 电子导览 guid3.daokeyun.com - **Primary Language**: PHP - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2026-04-22 - **Last Updated**: 2026-05-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README AI 对话服务使用Go实现 ## 待实现的功能 - [x] ai对话 - [x] 路线推荐 - [x] 鉴权处理 - [x] Go服务 nginx 转发 - [ ] 提示词优化 ## Nginx 部署 项目提供 `nginx/guide3.conf` 模板,包含 Laravel 伪静态和 GoService AI 接口代理。 ```bash # 1. 复制到 nginx 配置目录(Debian/Ubuntu) sudo cp nginx/guide3.conf /etc/nginx/sites-available/guide3 sudo ln -s /etc/nginx/sites-available/guide3 /etc/nginx/sites-enabled/ # 2. 修改配置中的 root、server_name、fastcgi_pass sudo nano /etc/nginx/sites-available/guide3 # 3. 校验并重载 sudo nginx -t && sudo systemctl reload nginx ``` RHEL/CentOS 可将配置放入 `/etc/nginx/conf.d/guide3.conf`。