nginx部署vue项目配置信息
location /imm{
        alias  D:/tfhc-petimmunity/web/dist;
        try_files $uri $uri/ @router;
	    index  index.html index.htm;
    }
		
    location @router {
        rewrite ^.*$ /index.html last;
    }
		
    location /prod-api/{
        proxy_set_header Host $http_host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header REMOTE-HOST $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_pass http://localhost:8030/;
    }