supanadit / docker-compose-wordpress.yaml
0 Favoriten
0 Forks
1 Dateien
Zuletzt aktiv
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 / dynamic-conf.toml
0 Favoriten
0 Forks
1 Dateien
Zuletzt aktiv
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 / traefik.toml
0 Favoriten
0 Forks
1 Dateien
Zuletzt aktiv
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 / docker-compose-traefik.yaml
0 Favoriten
0 Forks
1 Dateien
Zuletzt aktiv
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 |
Neuer
Älter