fix: remove wekan, unused
This commit is contained in:
parent
a7adec6e94
commit
4162fd2e5e
3 changed files with 1 additions and 58 deletions
|
@ -1,8 +0,0 @@
|
||||||
server {
|
|
||||||
listen 80;
|
|
||||||
server_name boards.ixvd.net;
|
|
||||||
|
|
||||||
location / {
|
|
||||||
proxy_pass http://wekan:8080$request_uri;
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,49 +0,0 @@
|
||||||
version: '2.2'
|
|
||||||
services:
|
|
||||||
wekandb:
|
|
||||||
image: mongo:6
|
|
||||||
restart: always
|
|
||||||
command: mongod --logpath /dev/null --oplogSize 128 --quiet
|
|
||||||
networks:
|
|
||||||
- wekan-tier
|
|
||||||
volumes:
|
|
||||||
- /etc/localtime:/etc/localtime:ro
|
|
||||||
- /srv/wekan/other/db:/data/db
|
|
||||||
|
|
||||||
wekan:
|
|
||||||
image: ghcr.io/wekan/wekan:latest
|
|
||||||
restart: always
|
|
||||||
env_file:
|
|
||||||
- /etc/ixvd/secrets/env/wekan.env
|
|
||||||
environment:
|
|
||||||
ROOT_URL: "https://boards.ixvd.net"
|
|
||||||
WRITABLE_PATH: "/data"
|
|
||||||
MONGO_URL: "mongodb://wekandb:27017/wekan"
|
|
||||||
MAIL_FROM: "Wekan Notifications <boards@ixvd.net>"
|
|
||||||
WITH_API: "true"
|
|
||||||
RICHER_CARD_COMMENT_EDITOR: "false"
|
|
||||||
CARD_OPENED_WEBHOOK_ENABLED: "false"
|
|
||||||
BIGEVENTS_PATTERN: "NONE"
|
|
||||||
BROWSER_POLICY_ENABLED: "true"
|
|
||||||
OIDC_REDIRECTION_ENABLED: "true"
|
|
||||||
OAUTH2_ENABLED: "true"
|
|
||||||
OAUTH2_LOGIN_STYLE: "redirect"
|
|
||||||
depends_on:
|
|
||||||
- wekandb
|
|
||||||
networks:
|
|
||||||
- wekan-tier
|
|
||||||
- proxy
|
|
||||||
volumes:
|
|
||||||
- /etc/localtime:/etc/localtime:ro
|
|
||||||
- wekan-data:/data:rw
|
|
||||||
|
|
||||||
volumes:
|
|
||||||
wekan-data:
|
|
||||||
driver: local
|
|
||||||
driver_opts:
|
|
||||||
type: none
|
|
||||||
device: /srv/wekan/data
|
|
||||||
o: bind
|
|
||||||
|
|
||||||
networks:
|
|
||||||
wekan-tier:
|
|
|
@ -7,7 +7,7 @@ services:
|
||||||
build: custom/nginx
|
build: custom/nginx
|
||||||
environment:
|
environment:
|
||||||
CERTBOT_EMAIL: "webmaster@ixvd.net"
|
CERTBOT_EMAIL: "webmaster@ixvd.net"
|
||||||
CERTBOT_DOMAINS: "apoc.ixvd.net,mail.ixvd.net,git.ixvd.net,my.ixvd.net,ci.ixvd.net,boards.ixvd.net,baikal.ixvd.net"
|
CERTBOT_DOMAINS: "apoc.ixvd.net,mail.ixvd.net,git.ixvd.net,my.ixvd.net,ci.ixvd.net,baikal.ixvd.net"
|
||||||
volumes:
|
volumes:
|
||||||
- /srv/certbot/data:/etc/letsencrypt
|
- /srv/certbot/data:/etc/letsencrypt
|
||||||
- /srv/certbot/other/www:/var/www/certbot
|
- /srv/certbot/other/www:/var/www/certbot
|
||||||
|
|
Loading…
Reference in a new issue