mirror of
https://github.com/Fluffy-Bean/GameExpo23.git
synced 2025-05-14 14:22:16 +00:00
Add initial files
This commit is contained in:
parent
86c5853832
commit
0d28b50944
3 changed files with 32 additions and 1 deletions
7
.gitignore
vendored
7
.gitignore
vendored
|
@ -157,4 +157,9 @@ cython_debug/
|
||||||
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
||||||
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
||||||
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
||||||
#.idea/
|
.idea/
|
||||||
|
.vscode/
|
||||||
|
|
||||||
|
# Remove dockerfile generated files
|
||||||
|
Caddy/data/
|
||||||
|
Caddy/config/
|
||||||
|
|
8
Caddy/Caddyfile
Normal file
8
Caddy/Caddyfile
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# Expo Website
|
||||||
|
:5000 {
|
||||||
|
reverse_proxy 127.0.0.1:5000
|
||||||
|
}
|
||||||
|
# Highscore Server
|
||||||
|
:6000 {
|
||||||
|
reverse_proxy 127.0.0.1:6000
|
||||||
|
}
|
18
docker-compose.yml
Normal file
18
docker-compose.yml
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
version: "3.8"
|
||||||
|
|
||||||
|
services:
|
||||||
|
caddy:
|
||||||
|
image: caddy:latest
|
||||||
|
# restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- "80:80"
|
||||||
|
- "443:443"
|
||||||
|
- "5000:5000"
|
||||||
|
- "6000:6000"
|
||||||
|
volumes:
|
||||||
|
- ./Caddy/Caddyfile:/etc/caddy/Caddyfile
|
||||||
|
- ./Caddy/data:/data
|
||||||
|
- ./Caddy/config:/config
|
||||||
|
environment:
|
||||||
|
- ACME_AGREE=true
|
||||||
|
- TZ=Europe/London
|
Loading…
Add table
Reference in a new issue