self-hosted/traefik/README.md

15 lines
307 B
Markdown
Raw Normal View History

2021-12-13 20:36:37 +01:00
# Installation
```
2022-01-31 21:02:05 +01:00
git clone https://github.com/atareao/self-hosted.git
2022-01-31 06:04:33 +01:00
cd self-hosted/traefik
2022-01-31 21:12:04 +01:00
cp sample.env .env
cp sample.traefik.yml traefik.yml
2021-12-13 20:36:37 +01:00
touch acme.json
2022-01-31 21:12:04 +01:00
chmod 600 acme.json
2022-01-31 06:04:33 +01:00
htpasswd -nb usuario contraseña >> users.txt
2022-02-04 18:18:36 +01:00
docker network create proxy
2022-01-31 07:30:23 +01:00
docker-compose up -d
docker-compose logs -f
2021-12-13 20:38:52 +01:00
```