zoukankan      html  css  js  c++  java
  • Nginx reverse proxy NSQAdmin

    以下配置只针对nsqadmin v1.1.0 (built w/go1.10.3)版本

    #
    # The default server
    #

    server {
        listen       80 default_server;
        listen       [::]:80 default_server;
        server_name  _;
        root         /usr/share/nginx/html;

        # Load configuration files for the default server block.
        include /etc/nginx/default.d/*.conf;

        location /nsq/ {
            auth_basic "NSQ Administrator's Area";
            auth_basic_user_file /root/nsq/bin/.htpasswd;
            proxy_pass http://127.0.0.1:4171/;

            # proxy_redirect default;
            proxy_redirect http://127.0.0.1:4171/ /nsq/;
            proxy_set_header Accept-Encoding ""; # no compression allowed or next won't work
            sub_filter_types  *;
            sub_filter '/static/' '/nsq/static/';
            sub_filter 'return"/api' 'return"/nsq/api';
            sub_filter '<a class="navbar-brand" href="/">' '<a class="navbar-brand" href="/nsq/">';
            sub_filter 'Router.extend({routes:{"":"topics","topics/(:topic)(/:channel)":"topic",lookup:"lookup","nodes(/:node)":"nodes",counter:"counter"}' 'Router.extend({routes:{"nsq/":"topics","nsq/topics/(:topic)(/:channel)":"topic","nsq/lookup":"lookup","nsq/nodes(/:node)":"nodes","nsq/counter":"counter"}';
            sub_filter '<a class="link" href="/' '<a class="link" href="/nsq/';
            sub_filter_once off;
        }

        error_page 404 /404.html;
            location = /40x.html {
        }

        error_page 500 502 503 504 /50x.html;
            location = /50x.html {
        }

    }

    主要是因为NSQAdmin采用了backbone.js来做router

  • 相关阅读:
    日常
    hdoj 5690 All X (快速幂+取模)
    hdoj 4004 The Frog's Games(二分)
    Mac androidStudio cannot resolve corresponding JNI function
    Mac 切换JDK版本
    MAC系统 如何显示隐藏的文件(文件夹)
    C 读写文件以及简单的文件加密
    C 双向链表的简单排序实现
    Android ViewDragHelper详解
    android Toast的内容过长,如何居中显示?
  • 原文地址:https://www.cnblogs.com/Jerryshome/p/10270914.html
Copyright © 2011-2022 走看看