windows服务器如何部署若依前后端分离项目,vue前端?

首先先保证,若依前后端分离项目在本地能正常运行,此处讲解的是Vue前端的项目部署。

部署步骤:

1、先安装nginx服务器

下载地址:https://www.nginx.cn/nginx-download

windows服务器如何部署若依前后端分离项目,vue前端?_第1张图片

2、打包若依前端vue项目

打包命令:

npm run build:prod                                                 

windows服务器如何部署若依前后端分离项目,vue前端?_第2张图片       

windows服务器如何部署若依前后端分离项目,vue前端?_第3张图片                 

   打包完成后,我们回看到新生成一个dist文件夹

      windows服务器如何部署若依前后端分离项目,vue前端?_第4张图片                       

将dist文件夹放到你要发布的路径文件下,配合nginx.conf配置文件里的路径如下:

windows服务器如何部署若依前后端分离项目,vue前端?_第5张图片                          

3、配置nginx配置文件

解压下载好的nginx压缩包,并进入目录,用notepad++打开文件夹里的nginx.conf配置文件

windows服务器如何部署若依前后端分离项目,vue前端?_第6张图片windows服务器如何部署若依前后端分离项目,vue前端?_第7张图片windows服务器如何部署若依前后端分离项目,vue前端?_第8张图片

进行如下配置,可以直接复制


#user  nobody;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    server {
        listen       81;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

		#配置本地dist路径
        location / {
            root   F:\TestPackge\dist;
			try_files $uri $uri/ /index.html;
            index  index.html index.htm;
        }
		#配置后端接口
		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:8080/;
		}
		# 配置history模式带来的刷新就是404
		
        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }


    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    #server {
    #    listen       443 ssl;
    #    server_name  localhost;

    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;

    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}

}

主要是如下修改:

windows服务器如何部署若依前后端分离项目,vue前端?_第9张图片

4、启动nginx服务器

先看一下前端Vue的端口配置

windows服务器如何部署若依前后端分离项目,vue前端?_第10张图片

启动nginx

windows服务器如何部署若依前后端分离项目,vue前端?_第11张图片

启动后端服务

windows服务器如何部署若依前后端分离项目,vue前端?_第12张图片

浏览器输入地址:http://localhost:81/  即可访问

 windows服务器如何部署若依前后端分离项目,vue前端?_第13张图片  windows服务器如何部署若依前后端分离项目,vue前端?_第14张图片

到此,前端vue就部署成功了。

你可能感兴趣的:(开发常用工具应用,vue,nginx)