linux运维学习笔记:nginx系列之04:反向代理

linux运维学习笔记:nginx系列之04:反向代理

作者:周少言
201年 月 日 星期 ,于北京

声明:本博客是本人周少言在某培训机构学习期间所写,其中参考借鉴了他人的博客,本文将会选择性给出相关链接,如有侵权,恳请告知。本文如有错误,恳请告知,欢迎交流。

参考连接

本文是工作手册,经过反复试验所写,所以,尽情在你的xshell粘贴复制,让更多的时间用来思考!如果有不妥的地方,恳请留言告知。

如果您觉得本文值得分享,请帮忙分享出去哦!知识的可贵在于分享与交流,谢谢。

布局:

nginx 192.168.22.41 源码安装
apache 192.168.22.42 yum安装
client 192.168.22.43
做好准备工作。

修改nginx配置文件

vim /usr/local/nginx/conf/nginx.conf
在server模块下修改location / {} 删除原内容,改为以下:

        location /proxy  {
            proxy_pass http://192.168.22.42:80;
        }

配置文件语法检测:
/usr/local/nginx/sbin/nginx -t

echo "this is the nginx,no proxy."  >> /usr/local/nginx/html/index.html
service nginx reload

配置apache

yum -y install httpd
service httpd start
echo "this is a test for prox."  >> /var/www/html/index.html
service httpd restart

client测试

访问192.168.22.41
显示 this is a test for prox

你可能感兴趣的:(linux运维学习笔记:nginx系列之04:反向代理)