zoukankan      html  css  js  c++  java
  • frp配置

    frps配置

    ----------------------------------------------------------------------------------------------------

    # [common] is integral section

    [common]

    # A literal address or host name for IPv6 must be enclosed

    # in square brackets, as in "[::1]:80", "[ipv6-host]:http" or "[ipv6-host%zone]:80"

    bind_addr = 0.0.0.0

    bind_port = 7000

    # if you want to support virtual host, you must set the http port for listening (optional)

    vhost_http_port = 78

    vhost_https_port = 79

    # if you want to configure or reload frps by dashboard, dashboard_port must be set

    dashboard_port = 7500

    # dashboard assets directory(only for debug mode)

    # assets_dir = ./static

    # console or real logFile path like ./frps.log

    log_file = ./frps.log

    # debug, info, warn, error

    log_level = info

    log_max_days = 3

    # if you enable privilege mode, frpc can create a proxy without pre-configure in frps when privilege_token is correct

    privilege_mode = true

    privilege_token = 12345678

    # only allow frpc to bind ports you list, if you set nothing, there won't be any limit

    privilege_allow_ports = 2000-3000,3001,3003,4000-50000,78,79

    # pool_count in each proxy will change to max_pool_count if they exceed the maximum value

    max_pool_count = 100

    # ssh is the proxy name, client will use this name and auth_token to connect to server

    [ssh]

    type = tcp

    auth_token = 123

    bind_addr = 0.0.0.0

    listen_port = 6000

    [web01]

    # if type equals http, vhost_http_port must be set

    type = http

    auth_token = 123

    # if proxy type equals http, custom_domains must be set separated by commas

    #custom_domains = web01.yourdomain.com,web01.yourdomain2.com

    custom_domains = 127.0.0.1

    [web02]

    # if type equals https, vhost_https_port must be set

    type = https

    auth_token = 123

    custom_domains = web02.yourdomain.com

    frpc配置

    ----------------------------------------------------------------------------------------------------

    [common]

    # A literal address or host name for IPv6 must be enclosed

    # in square brackets, as in "[::1]:80", "[ipv6-host]:http" or "[ipv6-host%zone]:80"

    server_addr = 123.207.25.144

    server_port = 7000

    # console or real logFile path like ./frpc.log

    log_file = ./frpc.log

    # debug, info, warn, error

    log_level = info

    log_max_days = 3

    # for authentication

    auth_token = 123

    # for privilege mode

    privilege_token = 12345678

    [web01]

    privilege_mode = true

    remote_port = 6000

    type = http

    local_port = 80

    use_gzip = true

    custom_domains = 123.207.25.144

    host_header_rewrite = 127.0.0.1

  • 相关阅读:
    [ExtJS5学习笔记]第十一节 Extjs5MVVM模式下系统登录实例
    PS 滤镜算法原理——曝光过度
    PS 滤镜算法原理 ——马赛克
    OpenCV——彩色图像转成灰度图像
    [ExtJS5学习笔记]第十节 Extjs5新增特性之ViewModel和DataBinding
    【翻译】EXTJS 编码风格指南与实例
    【翻译】Ext JS最新技巧——2014-8-13
    [ExtJS5学习笔记]第九节 Extjs5的mvc与mvvm框架结构简介
    [ExtJS5学习笔记]第八节 Extjs5的Ext.toolbar.Toolbar工具条组件及其应用
    [ExtJS5学习笔记]第七节 Extjs5的组件components及其模板事件方法学习
  • 原文地址:https://www.cnblogs.com/lujion/p/6179808.html
Copyright © 2011-2022 走看看