安装nginx
sudo yum install epel-release
sudo yum install nginx
查看nginx 安装情况
nginx -v
备份原始nginx配置文件
sudo cp /etc/nginx/ /etc/nginx/nginx.conf.backup
操作配置nginx
进入nginx 目录
cd /etc/nginx
修改nginx 配置文件
view nginx.conf
配置conf
server {
listen 80;
server_name www.xxxx.com xxxx.com;
location / {
proxy_pass http://localhost:8080;
index index.html;
}
},
server {
listen 80;
server_name admin.xxxx.com;
location / {
root /www/ftbhou;
index index.html index.htm;
}
}
nginx 服务操作
启动服务
sudo systemctl start nginx
停止服务
sudo systemctl stop nginx
重启服务
sudo systemctl restart nginx
开机自启
sudo systemctl enable nginx