Initial commit
This commit is contained in:
0
.gitignore
vendored
Normal file
0
.gitignore
vendored
Normal file
45
README.md
Normal file
45
README.md
Normal file
@@ -0,0 +1,45 @@
|
||||
## Site web Caddy avec Docker Compose
|
||||
|
||||
Un site web est un ensemble de pages web accessibles via Internet, généralement regroupées sous un même domaine. Ces pages peuvent contenir des informations sous forme de texte, images, vidéos, ou autres médias. https://caddyserver.com/
|
||||
|
||||
## Prérequis
|
||||
|
||||
- Git, Docker & Docker Compose installés
|
||||
|
||||
- Cette installation est faite pour fonctionner derrière un reverse-proxy. Exemple ici : https://gitea.lucasroyer.fr/server/reverse-proxy
|
||||
|
||||
## Installation
|
||||
|
||||
1. Clonez ce dépôt :
|
||||
```bash
|
||||
git clone https://gitea.lucasroyer.fr/server/gitea.git
|
||||
cd gitea
|
||||
```
|
||||
2. Modifiez app.env pour ajouter un mot de passe en remplaçant `mypassword` :
|
||||
```bash
|
||||
cp app.public.env app.env
|
||||
nano app.env
|
||||
```
|
||||
|
||||
```ini
|
||||
GITEA__database__DB_TYPE=postgres
|
||||
GITEA__database__HOST=db:5432
|
||||
GITEA__database__NAME=gitea
|
||||
GITEA__database__USER=gitea
|
||||
GITEA__database__PASSWD=mypassword #replace
|
||||
```
|
||||
2. Modifiez db.env avec le même mot de passe :
|
||||
```bash
|
||||
cp db.public.env db.env
|
||||
nano db.env
|
||||
```
|
||||
```ini
|
||||
POSTGRES_USER=gitea
|
||||
POSTGRES_PASSWORD=mypassword #replace
|
||||
POSTGRES_DB=gitea
|
||||
```
|
||||
4. Lancez et surveillez les conteneurs :
|
||||
```bash
|
||||
sudo docker compose up -d
|
||||
sudo docker compose logs -f
|
||||
```
|
||||
14
docker-compose.yml
Normal file
14
docker-compose.yml
Normal file
@@ -0,0 +1,14 @@
|
||||
services:
|
||||
web:
|
||||
image: caddy:latest
|
||||
container_name: site-veloboomboom
|
||||
restart: always
|
||||
volumes:
|
||||
- /home/lucas/site-veloboomboom/html:/srv # Dossier contenant les fichiers statiques
|
||||
- /home/lucas/site-veloboomboom/Caddyfile:/etc/caddy/Caddyfile # Fichier de configuration de Caddy
|
||||
networks:
|
||||
- reverse-proxy
|
||||
|
||||
networks:
|
||||
reverse-proxy:
|
||||
external: true
|
||||
BIN
html/assets/favicon/icons/bluesky.png
Normal file
BIN
html/assets/favicon/icons/bluesky.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.2 KiB |
BIN
html/assets/favicon/icons/nosig.png
Normal file
BIN
html/assets/favicon/icons/nosig.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 56 KiB |
BIN
html/assets/favicon/icons/veloboomboom.png
Normal file
BIN
html/assets/favicon/icons/veloboomboom.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 130 KiB |
BIN
html/assets/fonts/Inter/inter-cyrillic-300-normal.woff
Normal file
BIN
html/assets/fonts/Inter/inter-cyrillic-300-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-cyrillic-300-normal.woff2
Normal file
BIN
html/assets/fonts/Inter/inter-cyrillic-300-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-cyrillic-400-normal.woff
Normal file
BIN
html/assets/fonts/Inter/inter-cyrillic-400-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-cyrillic-400-normal.woff2
Normal file
BIN
html/assets/fonts/Inter/inter-cyrillic-400-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-cyrillic-500-normal.woff
Normal file
BIN
html/assets/fonts/Inter/inter-cyrillic-500-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-cyrillic-500-normal.woff2
Normal file
BIN
html/assets/fonts/Inter/inter-cyrillic-500-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-cyrillic-600-normal.woff
Normal file
BIN
html/assets/fonts/Inter/inter-cyrillic-600-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-cyrillic-600-normal.woff2
Normal file
BIN
html/assets/fonts/Inter/inter-cyrillic-600-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-cyrillic-700-normal.woff
Normal file
BIN
html/assets/fonts/Inter/inter-cyrillic-700-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-cyrillic-700-normal.woff2
Normal file
BIN
html/assets/fonts/Inter/inter-cyrillic-700-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-cyrillic-ext-300-normal.woff
Normal file
BIN
html/assets/fonts/Inter/inter-cyrillic-ext-300-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-cyrillic-ext-300-normal.woff2
Normal file
BIN
html/assets/fonts/Inter/inter-cyrillic-ext-300-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-cyrillic-ext-400-normal.woff
Normal file
BIN
html/assets/fonts/Inter/inter-cyrillic-ext-400-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-cyrillic-ext-400-normal.woff2
Normal file
BIN
html/assets/fonts/Inter/inter-cyrillic-ext-400-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-cyrillic-ext-500-normal.woff
Normal file
BIN
html/assets/fonts/Inter/inter-cyrillic-ext-500-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-cyrillic-ext-500-normal.woff2
Normal file
BIN
html/assets/fonts/Inter/inter-cyrillic-ext-500-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-cyrillic-ext-600-normal.woff
Normal file
BIN
html/assets/fonts/Inter/inter-cyrillic-ext-600-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-cyrillic-ext-600-normal.woff2
Normal file
BIN
html/assets/fonts/Inter/inter-cyrillic-ext-600-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-cyrillic-ext-700-normal.woff
Normal file
BIN
html/assets/fonts/Inter/inter-cyrillic-ext-700-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-cyrillic-ext-700-normal.woff2
Normal file
BIN
html/assets/fonts/Inter/inter-cyrillic-ext-700-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-greek-300-normal.woff
Normal file
BIN
html/assets/fonts/Inter/inter-greek-300-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-greek-300-normal.woff2
Normal file
BIN
html/assets/fonts/Inter/inter-greek-300-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-greek-400-normal.woff
Normal file
BIN
html/assets/fonts/Inter/inter-greek-400-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-greek-400-normal.woff2
Normal file
BIN
html/assets/fonts/Inter/inter-greek-400-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-greek-500-normal.woff
Normal file
BIN
html/assets/fonts/Inter/inter-greek-500-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-greek-500-normal.woff2
Normal file
BIN
html/assets/fonts/Inter/inter-greek-500-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-greek-600-normal.woff
Normal file
BIN
html/assets/fonts/Inter/inter-greek-600-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-greek-600-normal.woff2
Normal file
BIN
html/assets/fonts/Inter/inter-greek-600-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-greek-700-normal.woff
Normal file
BIN
html/assets/fonts/Inter/inter-greek-700-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-greek-700-normal.woff2
Normal file
BIN
html/assets/fonts/Inter/inter-greek-700-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-greek-ext-300-normal.woff
Normal file
BIN
html/assets/fonts/Inter/inter-greek-ext-300-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-greek-ext-300-normal.woff2
Normal file
BIN
html/assets/fonts/Inter/inter-greek-ext-300-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-greek-ext-400-normal.woff
Normal file
BIN
html/assets/fonts/Inter/inter-greek-ext-400-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-greek-ext-400-normal.woff2
Normal file
BIN
html/assets/fonts/Inter/inter-greek-ext-400-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-greek-ext-500-normal.woff
Normal file
BIN
html/assets/fonts/Inter/inter-greek-ext-500-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-greek-ext-500-normal.woff2
Normal file
BIN
html/assets/fonts/Inter/inter-greek-ext-500-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-greek-ext-600-normal.woff
Normal file
BIN
html/assets/fonts/Inter/inter-greek-ext-600-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-greek-ext-600-normal.woff2
Normal file
BIN
html/assets/fonts/Inter/inter-greek-ext-600-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-greek-ext-700-normal.woff
Normal file
BIN
html/assets/fonts/Inter/inter-greek-ext-700-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-greek-ext-700-normal.woff2
Normal file
BIN
html/assets/fonts/Inter/inter-greek-ext-700-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-latin-300-normal.woff
Normal file
BIN
html/assets/fonts/Inter/inter-latin-300-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-latin-300-normal.woff2
Normal file
BIN
html/assets/fonts/Inter/inter-latin-300-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-latin-400-normal.woff
Normal file
BIN
html/assets/fonts/Inter/inter-latin-400-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-latin-400-normal.woff2
Normal file
BIN
html/assets/fonts/Inter/inter-latin-400-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-latin-500-normal.woff
Normal file
BIN
html/assets/fonts/Inter/inter-latin-500-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-latin-500-normal.woff2
Normal file
BIN
html/assets/fonts/Inter/inter-latin-500-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-latin-600-normal.woff
Normal file
BIN
html/assets/fonts/Inter/inter-latin-600-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-latin-600-normal.woff2
Normal file
BIN
html/assets/fonts/Inter/inter-latin-600-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-latin-700-normal.woff
Normal file
BIN
html/assets/fonts/Inter/inter-latin-700-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-latin-700-normal.woff2
Normal file
BIN
html/assets/fonts/Inter/inter-latin-700-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-latin-ext-300-normal.woff
Normal file
BIN
html/assets/fonts/Inter/inter-latin-ext-300-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-latin-ext-300-normal.woff2
Normal file
BIN
html/assets/fonts/Inter/inter-latin-ext-300-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-latin-ext-400-normal.woff
Normal file
BIN
html/assets/fonts/Inter/inter-latin-ext-400-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-latin-ext-400-normal.woff2
Normal file
BIN
html/assets/fonts/Inter/inter-latin-ext-400-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-latin-ext-500-normal.woff
Normal file
BIN
html/assets/fonts/Inter/inter-latin-ext-500-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-latin-ext-500-normal.woff2
Normal file
BIN
html/assets/fonts/Inter/inter-latin-ext-500-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-latin-ext-600-normal.woff
Normal file
BIN
html/assets/fonts/Inter/inter-latin-ext-600-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-latin-ext-600-normal.woff2
Normal file
BIN
html/assets/fonts/Inter/inter-latin-ext-600-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-latin-ext-700-normal.woff
Normal file
BIN
html/assets/fonts/Inter/inter-latin-ext-700-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-latin-ext-700-normal.woff2
Normal file
BIN
html/assets/fonts/Inter/inter-latin-ext-700-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-vietnamese-300-normal.woff
Normal file
BIN
html/assets/fonts/Inter/inter-vietnamese-300-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-vietnamese-300-normal.woff2
Normal file
BIN
html/assets/fonts/Inter/inter-vietnamese-300-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-vietnamese-400-normal.woff
Normal file
BIN
html/assets/fonts/Inter/inter-vietnamese-400-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-vietnamese-400-normal.woff2
Normal file
BIN
html/assets/fonts/Inter/inter-vietnamese-400-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-vietnamese-500-normal.woff
Normal file
BIN
html/assets/fonts/Inter/inter-vietnamese-500-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-vietnamese-500-normal.woff2
Normal file
BIN
html/assets/fonts/Inter/inter-vietnamese-500-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-vietnamese-600-normal.woff
Normal file
BIN
html/assets/fonts/Inter/inter-vietnamese-600-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-vietnamese-600-normal.woff2
Normal file
BIN
html/assets/fonts/Inter/inter-vietnamese-600-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-vietnamese-700-normal.woff
Normal file
BIN
html/assets/fonts/Inter/inter-vietnamese-700-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/Inter/inter-vietnamese-700-normal.woff2
Normal file
BIN
html/assets/fonts/Inter/inter-vietnamese-700-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/OpenSans/open-sans-cyrillic-400-normal.woff
Normal file
BIN
html/assets/fonts/OpenSans/open-sans-cyrillic-400-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/OpenSans/open-sans-cyrillic-400-normal.woff2
Normal file
BIN
html/assets/fonts/OpenSans/open-sans-cyrillic-400-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/OpenSans/open-sans-cyrillic-600-normal.woff
Normal file
BIN
html/assets/fonts/OpenSans/open-sans-cyrillic-600-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/OpenSans/open-sans-cyrillic-600-normal.woff2
Normal file
BIN
html/assets/fonts/OpenSans/open-sans-cyrillic-600-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/OpenSans/open-sans-cyrillic-800-normal.woff
Normal file
BIN
html/assets/fonts/OpenSans/open-sans-cyrillic-800-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/OpenSans/open-sans-cyrillic-800-normal.woff2
Normal file
BIN
html/assets/fonts/OpenSans/open-sans-cyrillic-800-normal.woff2
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
html/assets/fonts/OpenSans/open-sans-greek-400-normal.woff
Normal file
BIN
html/assets/fonts/OpenSans/open-sans-greek-400-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/OpenSans/open-sans-greek-400-normal.woff2
Normal file
BIN
html/assets/fonts/OpenSans/open-sans-greek-400-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/OpenSans/open-sans-greek-600-normal.woff
Normal file
BIN
html/assets/fonts/OpenSans/open-sans-greek-600-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/OpenSans/open-sans-greek-600-normal.woff2
Normal file
BIN
html/assets/fonts/OpenSans/open-sans-greek-600-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/OpenSans/open-sans-greek-800-normal.woff
Normal file
BIN
html/assets/fonts/OpenSans/open-sans-greek-800-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/OpenSans/open-sans-greek-800-normal.woff2
Normal file
BIN
html/assets/fonts/OpenSans/open-sans-greek-800-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/OpenSans/open-sans-greek-ext-400-normal.woff
Normal file
BIN
html/assets/fonts/OpenSans/open-sans-greek-ext-400-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/OpenSans/open-sans-greek-ext-400-normal.woff2
Normal file
BIN
html/assets/fonts/OpenSans/open-sans-greek-ext-400-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/OpenSans/open-sans-greek-ext-600-normal.woff
Normal file
BIN
html/assets/fonts/OpenSans/open-sans-greek-ext-600-normal.woff
Normal file
Binary file not shown.
BIN
html/assets/fonts/OpenSans/open-sans-greek-ext-600-normal.woff2
Normal file
BIN
html/assets/fonts/OpenSans/open-sans-greek-ext-600-normal.woff2
Normal file
Binary file not shown.
BIN
html/assets/fonts/OpenSans/open-sans-greek-ext-800-normal.woff
Normal file
BIN
html/assets/fonts/OpenSans/open-sans-greek-ext-800-normal.woff
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user