nginx配置web服务器

在阿里云买了台服务器,应该是linux CentOS的系统。

本地写了一个vue程序,用了vue-router2.0做路由。

接下来说说如何用nginx配置web服务器:

1.scp将构建好的代码拷贝到服务器的某个目录

2.添加nginx yum repository

官网https://www.nginx.com/resources/wiki/start/topics/tutorials/install/

nginx配置web服务器_第1张图片

按照以上官网所说操作

3.安装nginx

yum install nginx


4.按照vue-router官网所说的步骤修改配置文件

https://router.vuejs.org/zh-cn/essentials/history-mode.html

在etc/nginx/conf.d/目录下找到conf文件,修改index.html前面的路径为如下即可

这是我的配置

nginx配置web服务器_第2张图片


5.启动服务

service nginx start


OK,配置完成




你可能感兴趣的:(nginx,服务器)