微服务
takujo
blog用途,分享和贮藏
展开
-
k3s 安装-阿里镜像-docker
k3s 安装使用国内镜像源,容器运行时选择docker,安装脚本。原创 2023-03-05 19:55:38 · 823 阅读 · 0 评论 -
k8s traefik ingress 配置
traefik ingress middleware原创 2023-03-05 14:49:30 · 302 阅读 · 0 评论 -
traefik 配置https
1.前置条件,可以查看这篇文章生成测试证书测试证书生成2.静态配置# 流量入口entryPoints: web: address: :80 forwardedHeaders: insecure: true http: # 重定向到443 redirections: entryPoint: to: websecure scheme: https websecure:原创 2021-02-23 15:31:04 · 1886 阅读 · 1 评论 -
traefik 代理mysql
静态配置# 流量入口entryPoints: mysql: address: :3307 web: address: :80# 动态配置providers: file: filename: gateway/dynamic_conf.yml# 工作日志log: filePath: gateway/log/traefik.log# 访问日志accessLog: filePath: gateway/log/access.log # 保留在内原创 2021-02-22 11:37:26 · 1234 阅读 · 0 评论 -
traefik yml配置
静态配置traefik.yml# 流量入口entryPoints: # 定义入口,任意起名 web: # 监听端口 address: :80 forwardedHeaders: insecure: true # http: # redirections: # #转发到另一个入口 # entryPoint: # to: websecure # sche..原创 2021-02-15 21:42:26 · 3922 阅读 · 4 评论