nginx反向代理配置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx反向代理配置相关的知识,希望对你有一定的参考价值。

1.修改nginx.conf配置文件,在 location / {这个行下添加反向代理

 location / {
    proxy_pass http://192.168.2.140:8080/;#就是这行代码
    auth_basic off;
    auth_basic_user_file /var/user;
    root   html;
    index  index.html index.htm;
 }


2.测试访问

http://www.nginx1.com:9527/


本文出自 “素颜” 博客,请务必保留此出处http://suyanzhu.blog.51cto.com/8050189/1944299

以上是关于nginx反向代理配置的主要内容,如果未能解决你的问题,请参考以下文章

nginx的反向代理和配置

nginx反向代理配置

nginx 配置实例-反向代理

linux 安装 nginx 及反向代理配置

Nginx专题:Nginx之反向代理及配置

Nginx 如何设置反向代理