self-hosted/nginx/README.md

23 lines
404 B
Markdown
Raw Normal View History

2022-02-04 05:53:18 +01:00
# Installation
```
git clone https://github.com/atareao/self-hosted.git
cd self-hosted/nginx
mkdir html
2022-02-05 08:54:36 +01:00
cp sample.env .env
2022-02-05 09:05:24 +01:00
```
If you want to work with Traefik,
```
2022-02-05 08:54:36 +01:00
docker-compose -f docker-compose.yml -f docker-compose.traefik.yml up -d
2022-02-04 05:53:18 +01:00
docker-compose logs -f
```
2022-02-05 09:05:24 +01:00
If you want to work with Caddy,
```
docker-compose -f docker-compose.yml -f docker-compose.caddy.yml up -d
docker-compose logs -f
```