yaml文件

admin:
  access_log_path: /tmp/admin_access.log
  address:
    socket_address:
      protocol: TCP
      address: 127.0.0.1
      port_value: 9901
static_resources:
  listeners:
  - name: listener_0
    address:
      socket_address:
        protocol: TCP
        address: 0.0.0.0
        port_value: 10000
    filter_chains:
    - filters:
      - name: envoy.http_connection_manager
        typed_config:
          "@type": type.googleapis.com/envoy.config.filter.network.http_connection_manager.v2.HttpConnectionManager
          stat_prefix: ingress_http
          route_config:
            name: local_route
            virtual_hosts:
            - name: local_service
              domains: ["*"]
              routes:
              - match:
                  prefix: "/"
                route:
                  host_rewrite: www.google.com
                  cluster: service_google
          http_filters:
          - name: envoy.router
  clusters:
  - name: service_google
    connect_timeout: 0.25s
    type: LOGICAL_DNS
    # Comment out the following line to test on v6 networks
    dns_lookup_family: V4_ONLY
    lb_policy: ROUND_ROBIN
    load_assignment:
      cluster_name: service_google
      endpoints:
      - lb_endpoints:
        - endpoint:
            address:
              socket_address:
                address: www.google.com
                port_value: 443
    tls_context:
      sni: www.google.com

最新文章

  1. 强大的<canvas>
  2. 【springBoot】springBoot返回json的一个问题
  3. class-dump-z下载地址
  4. Oauth2 接口api
  5. Hadoop学习---安装部署
  6. Winform ErrorProvider控件使用
  7. Android "QR二维码扫描"
  8. C# 类如何声明索引器以提供对类的类似数组的访问的代码
  9. Java HttpURLConnection发送post请求示例
  10. [Ting's笔记Day5]在部署到Heroku之前,将Rails项目从SQLite设定为PostgreSQL
  11. 5月份值得一看的 Java 技术干货!
  12. [UGUI]图文混排(一):标签制定和解析
  13. 5月29,48h,Geekathon,创业极客的梦想起点
  14. ADO数据库编程入门
  15. LVS 原理(调度算法、四种模式、四层负载均衡和七层 的区别)
  16. AndroidManifest.xml权限设置
  17. VS 2010 LINK : fatal error LNK1123: 转换到 COFF 期间失败: 文件无效或损坏
  18. sublime设置不提示更新
  19. 前端之JS的线程(最易懂)
  20. svn up (svn update) 状态缩写含义

热门文章

  1. 零售行业下MongoDB在产品目录系统、库存系统、个性推荐系统中的应用【转载】
  2. Checklist for an RMAN Restore (Doc ID 1554636.1)
  3. Acwing 14. 不修改数组找出重复的数字
  4. 【转】Java中的关键字 transient
  5. 《细说PHP》第四版 样章 第18章 数据库抽象层PDO 1
  6. mysql数据库的十种查询方式及多表查询
  7. DOS命令行操作MySQL常用命令
  8. 黄聪:wordpress登录后台后load-scripts.php载入缓慢
  9. Java中的ThreadLocal
  10. pandas 学习 第1篇:pandas基础 - 数据结构和数据类型