Go to file
Kienan Stewart f12a6c34cc Remove forced redirectino from http to https
This can be configured per router in Traefik 2.0

c.f. https://doc.traefik.io/traefik/v2.0/migration/v1-to-v2/#http-to-https-redirection-is-now-configured-on-routers
2023-02-22 15:28:20 -05:00
conf.d Initial commit 2022-09-10 16:23:15 -04:00
README.md Split the development ports into a separate compose file 2022-09-11 17:42:21 -04:00
container-compose.dev.yml Split the development ports into a separate compose file 2022-09-11 17:42:21 -04:00
container-compose.prod.yml Update certificate resolver configuration 2022-09-19 20:42:33 -04:00
container-compose.yml Update certificate resolver configuration 2022-09-19 20:42:33 -04:00
traefik.toml Remove forced redirectino from http to https 2023-02-22 15:28:20 -05:00

README.md

Traefik Container

Running in development

podman network exists web || podman network create web
podman-compose -f container-compose.yml -f container-compose.dev.yml up -d

Running in production

# Create a place to store configuration snippets for the file provider, if one
# does not yet exist. A known external volume is used since podman-compose will prefix
# non-external volumes with the project slug, making it less predictable for
# production deployments.
sudo podman volume exists traefik_config || sudo podman volume create traefik_config
sudo podman-compose up -d

It is possible to run this with a systemd service.