homelegance-chat.conf 1.7 KB

123456789101112131415161718192021222324252627282930313233
  1. # Homelegance Chatbot — Apache 配置片段
  2. # 将以下内容添加到 www.homelegance.com 的 <VirtualHost *:443> 块内
  3. # 文件位于:/etc/httpd/conf.d/homelegance.com.conf(或对应的主站配置文件)
  4. # 修改后执行:sudo systemctl reload httpd
  5. #
  6. # 所需模块(通常已启用):
  7. # mod_proxy, mod_proxy_http, mod_rewrite, mod_alias
  8. # ── Chatbot API:代理到 Node.js :3000 ────────────────────────────────────────
  9. # ProxyPass 必须在 Alias 之前声明,否则 Alias 会优先匹配 /chat/api/
  10. ProxyPreserveHost On
  11. ProxyPass /chat/api http://127.0.0.1:3000/api
  12. ProxyPassReverse /chat/api http://127.0.0.1:3000/api
  13. # 阻止 /chat/ 被 AJP catch-all 拦截
  14. ProxyPass /chat/ !
  15. # ── Chatbot 静态文件:由 Apache 直接服务 ─────────────────────────────────────
  16. Alias /chat /redant/web/homelegance-chatbot/dist/public
  17. <Directory /redant/web/homelegance-chatbot/dist/public>
  18. Options -Indexes
  19. AllowOverride None
  20. Require all granted
  21. </Directory>
  22. # ── SPA fallback:/chat/* 非文件请求一律返回 index.html ──────────────────────
  23. # 注意:不能用 %{REQUEST_FILENAME} !-f,Alias 下它检查 DocumentRoot 路径而非 Alias 路径
  24. # 改用捕获组 $1 拼接真实磁盘路径判断文件是否存在
  25. RewriteEngine On
  26. RewriteCond %{REQUEST_URI} ^/chat/
  27. RewriteCond %{REQUEST_URI} !/chat/api
  28. RewriteCond /redant/web/homelegance-chatbot/dist/public/%1 !-f
  29. RewriteRule ^/chat/(.*)$ /redant/web/homelegance-chatbot/dist/public/index.html [L]