其他分享
首页 > 其他分享> > Traefic 入门

Traefic 入门

作者:互联网

1. 下载traefic 的windows 版本 ,和consul 类似,只有一个可执行文件。

2. 建这个文件 myconfigfile.yml, 这文件要符合Go的tmeplate, traefik 是go 写的 ,这个文件的更多配置

global:
  checkNewVersion: true

providers:
  file:
    watch: true
    filename: foobar.yml
    debugLogGeneratedTemplate: true
api:
  insecure: true
  dashboard: true
  debug: true

3。Create  foobar.yml

http:
  middlewares:
    test-stripprefix:
      stripPrefix:
        prefixes:
          - "/foobar"
          - "/fiibar"

这个文件可以热加载。

4.执行 traefik.exe --configFile=myconfigfile.yml  --accesslog

5.打开浏览器 http://localhost:8080/dashboard/

 

标签:Traefic,http,入门,文件,foobar,traefik,true,yml
来源: https://www.cnblogs.com/qgbo/p/16338780.html