检查 本地是不是安装nginx
nginx -v
nginx 安装的准备工作
yum -y install gcc automake autoconf libtool make
yum install gcc gcc-c++
1.nginx 安装步骤
yum install epel-release
yum install nginx
2.nginx 查看安装目录
a.nginx -t
注释:/etc/nginx/nginx.conf
3.修改nginx 权限和直配运行文件目录
修改文件是:/etc/nginx/nginx.conf
user nginx; 改为 user root;
注释掉 root /usr/share/nginx/html; 这行代码前面加井号
location / {
}
改为
location / {
root /root/www;
index index.html index.htm
}
linux服务器创建目录:/root/www
4.上传程序
scp -r /Users/sunnyPro/mycode/gitProject/项目名称/* ssh root@服务器ip:/root/www
5.查看 nginx 进程
ps -ef | grep nginx
6.停止nginx
nginx -s stop
7.启动nginx
nginx
nginx -s reload
网友评论