nginx配置访问springboot服务

一、idea中可通过 clean package打包命令,打好包 ,比如:端口为8080,服务访问地址为/,

前端打包文件为dist,访端口为8000,

则可以这样配置nginx

    server {
        listen       8000;

        location / {
           root   html/dist;
            index  index.html index.htm;
        }
		  location /prod-api/ {
            proxy_pass http://localhost:8080/;
            proxy_set_header Host $host;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            
        }
    }

注意:/prod-api后面有个/,proxy_pass 后面也有/,否则可能会导致404异常,前端访问不到后台服务。

你可能感兴趣的:(nginx,运维,spring,boot)