Opengist

Explore

  • All gists
  • Topics
  • Users
Give feedback on the new UI Powered by Opengist ⋅ 148ms

user:thomas gists created by user

title:mygist gists with given title

description:sync gists with given description

filename:myfile.txt gists having files with given name

extension:yml gists having files with given extension

language:go gists having files with given language

topic:homelab gists with given topic

all:systemctl search all fields

Login
t

traefik

Recently created Least recently created Recently updated Least recently updated
supanadit

supanadit / docker-compose-wordpress.yaml

Last active 9 hours ago wordpress docker traefik

Wordpress simple docker compose setup for Docker

0 0 1
1 networks:
2 default:
3 name: pratama-network
4 external: true
5
6 services:
7 wordpress:
8 image: bitnami/wordpress:6
9 container_name: wordpress
10 labels:
supanadit

supanadit / dynamic-conf.toml

Last active 9 hours ago docker traefik

Traefik Dynamic Configuration Example

0 0 1
1 [http.routers]
2 # Traefik
3 [http.routers.api]
4 rule = "Host(`traefik.supanadit.com`)"
5 # Uncomment this for production use
6 # entrypoints = ["web","websecure"]
7 # Comment this for production use
8 entrypoints = ["web"]
9 service = "api@internal"
10 # Uncomment this for production use
supanadit

supanadit / traefik.toml

Last active 9 hours ago docker traefik

Traefik Configuration in TOML Format

0 0 1
1 [api]
2 dashboard = true
3
4 [entryPoints]
5 [entryPoints.web]
6 address = ":80"
7 # Uncomment this at production for redirecting to HTTPS automatically
8 # [entryPoints.web.http.redirections.entryPoint]
9 # to = "websecure"
10 # scheme = "https"
supanadit

supanadit / docker-compose-traefik.yaml

Last active 9 hours ago docker traefik

Docker Compose Traefik Example

0 0 1
1 networks:
2 default:
3 name: pratama-network
4 external: true
5
6 services:
7 traefik:
8 container_name: traefik
9 image: traefik:v3.1.4
10 restart: always