时间:2021-07-01 10:21:17 帮助过:14人阅读
一、安装httpd
yum install httpd
echo “hello world!” > /var/www/html/index.html
service httpd start
完成了上述步骤,可以测试一下:curl http://127.0.0.1
二、修改nginx的配置文件nginx.conf
server {
listen 8080; #因为httpd已经占用了80端口
…
location / {
proxy_pass http://127.0.0.1:80;
}
…
}
三、测试
到这里,nginx的反向代理和upstream模块就能跑起来了。测试如下:
curl http://127.0.0.1:8080
以上就介绍了配置简单的nginx反向代理,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。