美文网首页
Nginx配置文件

Nginx配置文件

作者: Luomeng | 来源:发表于2017-08-17 15:58 被阅读0次

✔通过访问二级目录来访问后台

server {
        listen 80;
        server_name api.imwoniu.com;
        #通过访问backend二级目录来访问后台
    location /backend/ {
            #BackendService后面的斜杠是一个关键,没有斜杠的话就会传递backend到后端节点导致404
            proxy_pass      http://BackendService/;
            proxy_redirect  off;
            proxy_set_header Host $host;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        }
        #其他路径默认访问前台网站
        #location / {
        #    proxy_pass http://FrontPage;
        #    proxy_redirect  off;
        #    proxy_set_header  Host  $host;
        #    proxy_set_header  X-Real-IP  $remote_addr;
        #    proxy_set_header  X-Forwarded-For $proxy_add_x_forwarded_for;
        #}
    }
 
#简单的负载均衡节点配置
upstream BackendService {
     server 127.0.0.1:9292;
     # ip_hash;
}
#upstream FrontPage {
#     server 127.0.0.1;
#     # ip_hash;
#}

相关文章

  • 第二讲 Nginx模块详解

    本章要点 Nginx 配置文件结构 各个模块的详解 2.1 Nginx配置文件结构 Nginx的配置文件nginx...

  • Nginx配置文件详解

    Nginx配置文件nginx.conf详解 nginx.conf nginx技术一--配置文件nginx.conf...

  • 应用程序常用命令

    nginx: nginx启动:nginx -c nginx配置文件地址检查配置文件是否正确:nginx -t重启n...

  • nginx(五)nginx cmd

    nginx cmd 1、启动nginx start nginx 2、修改配置文件并生效 测试nginx配置文件是否...

  • Nginx配置文件nginx.conf详解和nginx的变量规则

    Nginx配置文件nginx.conf详解 Nginx 总的 配置文件 位置 /usr/local/nginx/c...

  • Nginx使用

    Nginx [toc] nginx命令 参数 Nginx启动 通过指定配置文件启动 配置文件语法检查 Nginx配...

  • nginx配置文件

    nginx配置文件nginx配置文件详解一、nginx配置文件 启动子进程程序默认用户 user nobody;...

  • Nginx 打印body体内容

    Nginx 打印body体内容,修改nginx配置文件nginx.conf 重新加载配置文件 nginx body...

  • nginx(二)

    在修改配置文件后,检查 nginx 配置文件语法是否正确:nginx -t 重新启动 nginx: nginx -...

  • Nginx yum安装目录

    日志切割配置文件/etc/logrotate.d/nginx主要配置文件/etc/nginx/etc/nginx/...

网友评论

      本文标题:Nginx配置文件

      本文链接:https://www.haomeiwen.com/subject/fvcnrxtx.html