项目地址:https://gitee.com/liu-haijin/haijin_ai_en
技术栈:deepseek、springai 1..0.0、springboot3.4.5、jdk17、cursor、nginx、百度智能开放平台
访问地址:http://120.55.86.109:9001/

ng搭建:http://www.haijin.xyz/list/article/304
打包vue项目:npm run build
将dist上传到/usr/local/nginx/html/en

配置ng文件:/usr/local/nginx/conf/nginx.conf

    server {
        listen       9001;
        server_name  localhost;
        root /usr/local/nginx/html/en;  # 打包后的前端文件目录
        index index.html;
        location / {
             try_files $uri $uri/ /index.html;
        }
    }