阿⾥云⾸次安装和部署nginx
1、执⾏yum命令安装依赖
yum -y install pcre*
yum -y install openssl*
2、下载nginx
//如果没有安装wget,下载已编译版本
yum install wget
//进⼊指定⽬录
cd /usr/local/
//下载nginx 安装包,“1.16.0”是指定的安装版本,可以选择⾃⼰需要或者最新的版本
wget /download/nginx-1.16.
3、编译安装
//通过tar解压安装包
tar -zxvf nginx-1.16.
//进⼊nginx
cd nginx-1.16.0
//执⾏编译
./configure
//编译报错误的话⽐如:“C compiler cc is not found”,这个就是缺少编译环境,安装⼀下就可以了
yum -y install gcc make gcc-c++ openssl-devel wget
//编译成功执⾏
make -j4 && make install
4、nginx测试
//在nginx可执⾏命令下⽬录/usr/local/nginx/sbin执⾏
./nginx -t
//出现下⾯结果表⽰安装成功
nginx: the configuration file /usr/local/nginx/f syntax is ok
nginx: configuration file /usr/local/nginx/f test is successful
//也可以执⾏./nginx 启动,然后在浏览器访问此机器的 IP,如果浏览器出现 Welcome to nginx! 则表⽰ Nginx 已经安装并运⾏成功 //部分命令
//重启:./nginx -s reload
//停⽌:./nginx -s stop
5、配置开机启动-配置⽂件(如果先部署项⽬,跳过看第7条)
//进⼊⽬录,编辑nginx⽂件
cd /etc/init.d/
vi nginx
//添加如下,注内容修改PATH字段, 匹配⾃⼰的安装路径,如果按这个流程安装应该是⼀样的
#!/bin/bash
# Startup script for the nginx Web Server
# chkconfig: - 85 15
# description: nginx is a World Wide Web server. It is used to serve
# HTML files and CGI.
# processname: nginx
# pidfile: /usr/local/nginx/logs/nginx.pid
# config: /usr/local/nginx/f
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
export PATH
nginx停止命令NGINX_HOME=/usr/local/nginx/sbin
NGINX_CONF=/usr/local/nginx/conf
PHP_HOME=/usr/local/php-fcgi/bin
if [ ! -f "$NGINX_HOME/nginx" ]
then
echo "nginxserver startup: cannot start"
exit
fi
case "$1" in
'start')
$PHP_HOME/spawn-fcgi -a 127.0.0.1 -p 10080 -C 20 -u nobody -f $PHP_HOME/php-cgi $NGINX_HOME/nginx -c $NGINX_f
echo "nginx start successful"
;;
'stop')
killall -TERM php-cgi
killall -TERM nginx
;;
esac
6、配置开机启动-启动
//设置执⾏权限
chmod a+x /etc/init.d/nginx
//注册成服务
chkconfig --add nginx
//重启, 查看nginx服务是否⾃动启动.
shutdown -h0 -r
netstat -apn|grep nginx
7、配置部署⾃⼰的项⽬,下⾯以⼀个node/vue前后端分离的项⽬为例:
//到nginx。conf配置⽂件
cd /usr/local/nginx/conf/
//编辑⽂件
f
/
/在server对象⾥改为⾃⼰要的端⼝,默认为80
listen 80;
//同样的配置前端打包地址: root为vue打包后存放在服务器的地址
location / {
root /data/paulBlog/browseClient/dist;
index index.html index.htm;
}
//同样的配置后端接⼝地址:proxy_pass 为后端接⼝地址
//整体⽂件如下
//通过命令:qw 保存成功后最好是重新启动下nginx
/usr/local/nginx/sbin/nginx -s reload
8、在阿⾥云后台配置安全组规制放出对应的端⼝,就可以通过阿⾥云提供的IP访问了。需要域名访问的话,同样在阿⾥云上申请,解析,最后备案后,可通过域名访问,备案挺⿇烦的^**^
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论