1
0
Fork 0
mirror of https://github.com/kou029w/fogtype.com synced 2025-01-18 08:05:02 +00:00

task.fogtype.com

This commit is contained in:
Nebel 2023-03-19 13:59:36 +09:00
parent 83f73eca1e
commit 278b225160
2 changed files with 24 additions and 0 deletions

View file

@ -45,10 +45,28 @@ services:
command: "--config-path /etc/gotosocial/config.yaml"
networks:
- fogtype
vikunja-api:
image: vikunja/api:0.20.4
restart: unless-stopped
environment:
VIKUNJA_SERVICE_FRONTENDURL: https://task.fogtype.com/
VIKUNJA_SERVICE_ENABLEREGISTRATION: "false"
VIKUNJA_DATABASE_TYPE: sqlite
VIKUNJA_DATABASE_PATH: files/vikunja.db
volumes:
- "vikunja_data:/app/vikunja/files"
networks:
- fogtype
vikunja-frontend:
image: vikunja/frontend:0.20.5
restart: unless-stopped
networks:
- fogtype
volumes:
caddy_data:
caddy_config:
gotosocial_data:
vikunja_data:
networks:
fogtype:
ipam:

View file

@ -21,3 +21,9 @@ dns.fogtype.com {
}
}
}
task.fogtype.com {
reverse_proxy /.well-known/* vikunja-api:3456
reverse_proxy /api/* vikunja-api:3456
reverse_proxy /dav/* vikunja-api:3456
reverse_proxy vikunja-frontend:80
}