土狗的小抄本 -- centos 安装和配置 nginx

前端之家收集整理的这篇文章主要介绍了土狗的小抄本 -- centos 安装和配置 nginx前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

安装

yum list Nginx yum install Nginx.x86_64

启动服务

service Nginx start

配置Nginx

cd /etc/Nginx

修改Nginx.conf 文件添加如下内容

location /ckget/ { proxy_pass http://127.0.0.1:8080/ckget/; proxy_set_header X-Real-IP $remote_addr; }

重启服务

service Nginx restart

原文链接:https://www.f2er.com/centos/379342.html

猜你在找的CentOS相关文章