Compare commits
1 Commits
ana-docker
...
2c453bc917
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2c453bc917 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,2 +1 @@
|
|||||||
data/
|
data/
|
||||||
**/.env
|
|
||||||
|
|||||||
45
compose/adguard/docker-compose.yml
Executable file
45
compose/adguard/docker-compose.yml
Executable file
@@ -0,0 +1,45 @@
|
|||||||
|
#version: "3"
|
||||||
|
services:
|
||||||
|
adguardhome:
|
||||||
|
image: adguard/adguardhome
|
||||||
|
container_name: adguardhome
|
||||||
|
ports:
|
||||||
|
- 53:53/tcp
|
||||||
|
- 53:53/udp
|
||||||
|
- 784:784/udp
|
||||||
|
- 853:853/tcp
|
||||||
|
- 3000:3000/tcp
|
||||||
|
- 8080:80/tcp
|
||||||
|
- 8443:443/tcp
|
||||||
|
volumes:
|
||||||
|
- adguard-workdir:/opt/adguardhome/work
|
||||||
|
- adguard-confdir:/opt/adguardhome/conf
|
||||||
|
restart: unless-stopped
|
||||||
|
labels:
|
||||||
|
# This means the container will be stopped during backup to ensure
|
||||||
|
# backup integrity. You can omit this label if stopping during backup
|
||||||
|
# not required. Can be omitted if false.
|
||||||
|
- docker-volume-backup.stop-during-backup=false
|
||||||
|
networks:
|
||||||
|
- tnet
|
||||||
|
backup:
|
||||||
|
image: offen/docker-volume-backup:latest
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
# volumes to backup.
|
||||||
|
- adguard-workdir:/backup/adguard-workdir:ro
|
||||||
|
- adguard-confdir:/backup/adguard-confdir:ro
|
||||||
|
- /mnt/backup/docker/nh3-docker/adguard:/archive
|
||||||
|
# can omit below if not stopping service.
|
||||||
|
# - /var/run/docker.sock:/var/run/docker.sock:ro
|
||||||
|
env_file:
|
||||||
|
- .env
|
||||||
|
networks:
|
||||||
|
- tnet
|
||||||
|
volumes:
|
||||||
|
adguard-workdir: null
|
||||||
|
adguard-confdir: null
|
||||||
|
networks:
|
||||||
|
tnet:
|
||||||
|
name: traefik-net
|
||||||
|
external: true
|
||||||
32
compose/dockge/compose.yaml
Normal file → Executable file
32
compose/dockge/compose.yaml
Normal file → Executable file
@@ -8,21 +8,39 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- /var/run/docker.sock:/var/run/docker.sock
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
- dockge_data:/app/data
|
- dockge_data:/app/data
|
||||||
|
|
||||||
|
# If you want to use private registries, you need to share the auth file with Dockge:
|
||||||
|
# - /root/.docker/:/root/.docker
|
||||||
|
|
||||||
|
# Stacks Directory
|
||||||
|
# ⚠️ READ IT CAREFULLY. If you did it wrong, your data could end up writing into a WRONG PATH.
|
||||||
|
# ⚠️ 1. FULL path only. No relative path (MUST)
|
||||||
|
# ⚠️ 2. Left Stacks Path === Right Stacks Path (MUST)
|
||||||
- /opt/docker/compose:/opt/docker/compose
|
- /opt/docker/compose:/opt/docker/compose
|
||||||
labels:
|
|
||||||
- homepage.group=PFI-ANA
|
|
||||||
- homepage.name=Dockge
|
|
||||||
- homepage.icon=si-portainer
|
|
||||||
- homepage.description=Docker
|
|
||||||
- homepage.href=http://10.250.50.70:5001
|
|
||||||
environment:
|
environment:
|
||||||
# Tell Dockge where is your stacks directory
|
# Tell Dockge where is your stacks directory
|
||||||
- DOCKGE_STACKS_DIR=/opt/docker/compose
|
- DOCKGE_STACKS_DIR=/opt/docker/compose
|
||||||
networks:
|
networks:
|
||||||
- tnet
|
- tnet
|
||||||
|
|
||||||
|
backup:
|
||||||
|
image: offen/docker-volume-backup:latest
|
||||||
|
restart: always
|
||||||
|
volumes:
|
||||||
|
# volumes to backup.
|
||||||
|
- dockge_data:/backup/dockge:ro
|
||||||
|
# location to backup
|
||||||
|
- /mnt/backup/docker/esh-vm-docker/dockge:/archive
|
||||||
|
# can omit below if not stopping service.
|
||||||
|
# - /var/run/docker.sock:/var/run/docker.sock:ro
|
||||||
|
env_file:
|
||||||
|
- .env
|
||||||
|
networks:
|
||||||
|
- tnet
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
dockge_data: null
|
dockge_data:
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
tnet:
|
tnet:
|
||||||
name: traefik-net
|
name: traefik-net
|
||||||
|
|||||||
@@ -1,39 +0,0 @@
|
|||||||
services:
|
|
||||||
server:
|
|
||||||
image: gitea/gitea:latest
|
|
||||||
container_name: gitea
|
|
||||||
environment:
|
|
||||||
- USER_UID=1000
|
|
||||||
- USER_GID=1000
|
|
||||||
- GITEA__database__DB_TYPE=postgres
|
|
||||||
- GITEA__database__HOST=${DB_IP}:5432
|
|
||||||
- GITEA__database__NAME=gitea
|
|
||||||
- GITEA__database__USER=gitea
|
|
||||||
- GITEA__database__PASSWD=gitea
|
|
||||||
restart: unless-stopped
|
|
||||||
volumes:
|
|
||||||
- gitea_data:/data
|
|
||||||
- /etc/timezone:/etc/timezone:ro
|
|
||||||
- /etc/localtime:/etc/localtime:ro
|
|
||||||
ports:
|
|
||||||
- 3000:3000
|
|
||||||
- 222:22
|
|
||||||
labels:
|
|
||||||
- homepage.group=Apps
|
|
||||||
- homepage.name=Gitea
|
|
||||||
- homepage.icon=si-gitea
|
|
||||||
- homepage.description=Git Repo (ana)
|
|
||||||
- homepage.href=https://gitea.phasefinal.com
|
|
||||||
- traefik.enable=true
|
|
||||||
- traefik.http.routers.gitea.tls=true
|
|
||||||
- traefik.http.routers.gitea.rule=Host(`gitea.phasefinal.com`)
|
|
||||||
- traefik.http.routers.gitea.tls.certresolver=anaprod
|
|
||||||
- traefik.http.services.gitea.loadbalancer.server.port=3000
|
|
||||||
networks:
|
|
||||||
- tnet
|
|
||||||
networks:
|
|
||||||
tnet:
|
|
||||||
name: traefik-net
|
|
||||||
external: true
|
|
||||||
volumes:
|
|
||||||
gitea_data:
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
services:
|
|
||||||
it-tools:
|
|
||||||
image: corentinth/it-tools:latest
|
|
||||||
container_name: it-tools
|
|
||||||
restart: unless-stopped
|
|
||||||
ports:
|
|
||||||
- "8780:80"
|
|
||||||
labels:
|
|
||||||
- homepage.group=Apps
|
|
||||||
- homepage.name=IT Tools
|
|
||||||
- homepage.icon=mdi-tools
|
|
||||||
- homepage.description=IT Dev Tools
|
|
||||||
- homepage.href=http://10.250.50.70:8780
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
#version: '3'
|
|
||||||
services:
|
|
||||||
mailrise:
|
|
||||||
image: yoryan/mailrise:latest
|
|
||||||
container_name: mailrise
|
|
||||||
labels:
|
|
||||||
- homepage.group=PFI-ANA
|
|
||||||
- homepage.name=Mailrise
|
|
||||||
- homepage.icon=mdi-mail
|
|
||||||
- homepage.description=Mail to Notification Agent
|
|
||||||
- homepage.href=http://10.250.50.70:8025
|
|
||||||
volumes:
|
|
||||||
- /opt/docker/conf/mailrise/mailrise.conf:/etc/mailrise.conf:ro
|
|
||||||
restart: unless-stopped
|
|
||||||
environment:
|
|
||||||
- USER=1000:1000
|
|
||||||
ports:
|
|
||||||
- 8025:8025
|
|
||||||
networks: {}
|
|
||||||
@@ -1,41 +0,0 @@
|
|||||||
#version: "2.4"
|
|
||||||
|
|
||||||
services:
|
|
||||||
mattermost:
|
|
||||||
image: mattermost/mattermost-team-edition:latest
|
|
||||||
restart: unless-stopped
|
|
||||||
tmpfs:
|
|
||||||
- /tmp
|
|
||||||
volumes:
|
|
||||||
- /opt/docker/conf/mattermost:/mattermost/config
|
|
||||||
- /opt/docker/data/mattermost/data:/mattermost/data
|
|
||||||
- /opt/docker/data/mattermost/logs:/mattermost/logs
|
|
||||||
- /opt/docker/data/mattermost/plugins:/mattermost/plugins
|
|
||||||
- /opt/docker/data/mattermost/client/plugins:/mattermost/client/plugins
|
|
||||||
- /opt/docker/data/mattermost/bleve-indexes:/mattermost/bleve-indexes
|
|
||||||
environment:
|
|
||||||
TZ: America/Los_Angeles
|
|
||||||
DOMAIN: mm.phasefinal.com
|
|
||||||
MM_SQLSETTINGS_DRIVERNAME: postgres
|
|
||||||
MM_SQLSETTINGS_DATASOURCE: ${DATASOURCE}
|
|
||||||
ports:
|
|
||||||
- 8065:8065
|
|
||||||
- 8443:8443/udp
|
|
||||||
user: 1000:1000
|
|
||||||
labels:
|
|
||||||
- homepage.group=Apps
|
|
||||||
- homepage.name=MatterMost
|
|
||||||
- homepage.icon=si-mattermost
|
|
||||||
- homepage.description=Chat Application (ana)
|
|
||||||
- homepage.href=https://mm.phasefinal.com
|
|
||||||
- traefik.enable=true
|
|
||||||
- traefik.http.routers.mattermost.tls=true
|
|
||||||
- traefik.http.routers.mattermost.rule=Host(`mm.phasefinal.com`)
|
|
||||||
- traefik.http.routers.mattermost.tls.certresolver=anaprod
|
|
||||||
- traefik.http.services.mattermost.loadbalancer.server.port=8065
|
|
||||||
networks:
|
|
||||||
- tnet
|
|
||||||
networks:
|
|
||||||
tnet:
|
|
||||||
name: traefik-net
|
|
||||||
external: true
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
version: "3"
|
|
||||||
services:
|
|
||||||
open-webui:
|
|
||||||
ports:
|
|
||||||
- 3100:8080
|
|
||||||
environment:
|
|
||||||
OLLAMA_BASE_URL: ${OLLAMA_BASE}
|
|
||||||
volumes:
|
|
||||||
- open-webui:/app/backend/data
|
|
||||||
restart: unless-stopped
|
|
||||||
image: ghcr.io/open-webui/open-webui:main
|
|
||||||
labels:
|
|
||||||
- homepage.group=AI Systems
|
|
||||||
- homepage.name=Open WebUI
|
|
||||||
- homepage.icon=mdi-chat
|
|
||||||
- homepage.description=Open WebUI Chat - ana - 3100
|
|
||||||
- homepage.href=http://10.250.50.70:3100
|
|
||||||
networks:
|
|
||||||
- tnet
|
|
||||||
env_file:
|
|
||||||
- .env
|
|
||||||
volumes:
|
|
||||||
open-webui: null
|
|
||||||
networks:
|
|
||||||
tnet:
|
|
||||||
name: traefik-net
|
|
||||||
external: true
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
# ignored : docker pull restic/rest-server:latest
|
|
||||||
|
|
||||||
#version: "3.3"
|
|
||||||
services:
|
|
||||||
rest-server:
|
|
||||||
ports:
|
|
||||||
- 8000:8000
|
|
||||||
labels:
|
|
||||||
- homepage.group=PFI-ANA
|
|
||||||
- homepage.name=Restic
|
|
||||||
- homepage.icon=mdi-cloud-upload
|
|
||||||
- homepage.description=Restic Backup Server (8000:ana)
|
|
||||||
- homepage.href=http://10.250.50.70:8000
|
|
||||||
volumes:
|
|
||||||
- /mnt/backup/restic/repo/ana:/data
|
|
||||||
container_name: rest_server
|
|
||||||
image: restic/rest-server
|
|
||||||
networks:
|
|
||||||
- tnet
|
|
||||||
networks:
|
|
||||||
tnet:
|
|
||||||
name: traefik-net
|
|
||||||
external: true
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
version: "3"
|
|
||||||
services:
|
|
||||||
hbbs:
|
|
||||||
container_name: hbbs
|
|
||||||
image: rustdesk/rustdesk-server:latest
|
|
||||||
command: hbbs
|
|
||||||
volumes:
|
|
||||||
- /opt/docker/data/rustdesk:/root
|
|
||||||
network_mode: host
|
|
||||||
depends_on:
|
|
||||||
- hbbr
|
|
||||||
restart: unless-stopped
|
|
||||||
hbbr:
|
|
||||||
container_name: hbbr
|
|
||||||
image: rustdesk/rustdesk-server:latest
|
|
||||||
command: hbbr
|
|
||||||
labels:
|
|
||||||
- homepage.group=PFI-ANA
|
|
||||||
- homepage.name=Rustdesk
|
|
||||||
- homepage.icon=si-rustdesk
|
|
||||||
- homepage.description=Rustdesk Relay Server (ana)
|
|
||||||
- homepage.href=https://rustdesk.phasefinal.com
|
|
||||||
volumes:
|
|
||||||
- /opt/docker/data/rustdesk:/root
|
|
||||||
network_mode: host
|
|
||||||
restart: unless-stopped
|
|
||||||
networks: {}
|
|
||||||
@@ -1,69 +0,0 @@
|
|||||||
# version: '2.0'
|
|
||||||
services:
|
|
||||||
db:
|
|
||||||
image: mariadb:10.6
|
|
||||||
container_name: seafile-mysql
|
|
||||||
environment:
|
|
||||||
- MYSQL_ROOT_PASSWORD=oiuasdf81723 # Requested, set the root's password of MySQL service.
|
|
||||||
- MYSQL_LOG_CONSOLE=true
|
|
||||||
volumes:
|
|
||||||
- seafile_db:/var/lib/mysql # Requested, specifies the path to MySQL data persistent store.
|
|
||||||
networks:
|
|
||||||
- tnet
|
|
||||||
memcached:
|
|
||||||
image: memcached:1.6.18
|
|
||||||
container_name: seafile-memcached
|
|
||||||
entrypoint: memcached -m 256
|
|
||||||
networks:
|
|
||||||
- tnet
|
|
||||||
seafile:
|
|
||||||
image: seafileltd/seafile-mc:11.0-latest
|
|
||||||
container_name: seafile
|
|
||||||
ports:
|
|
||||||
- 9180:80
|
|
||||||
volumes:
|
|
||||||
- seafile_datastore:/shared # Requested, specifies the path to Seafile data persistent store.
|
|
||||||
environment:
|
|
||||||
- DB_HOST=db
|
|
||||||
- DB_ROOT_PASSWD=${DB_ROOT_PW}
|
|
||||||
- TIME_ZONE=America/Los_Angeles
|
|
||||||
- SEAFILE_ADMIN_EMAIL=${SEAFILE_ADMIN_EMAIL}
|
|
||||||
- SEAFILE_ADMIN_PASSWORD=${SEAFILE_ADMIN_PW}
|
|
||||||
depends_on:
|
|
||||||
- db
|
|
||||||
- memcached
|
|
||||||
labels:
|
|
||||||
- homepage.group=Apps
|
|
||||||
- homepage.name=SeaFile
|
|
||||||
- homepage.icon=mdi-sync-circle
|
|
||||||
- homepage.description=File Sync Service (ana)
|
|
||||||
- homepage.href=https://seafile.phasefinal.com
|
|
||||||
- traefik.enable=true
|
|
||||||
- traefik.http.routers.seafile.tls=true
|
|
||||||
- traefik.http.routers.seafile.rule=Host(`seafile.phasefinal.com`)
|
|
||||||
- traefik.http.routers.seafile.tls.certresolver=anaprod
|
|
||||||
networks:
|
|
||||||
- tnet
|
|
||||||
env_file:
|
|
||||||
- .env
|
|
||||||
backup:
|
|
||||||
image: offen/docker-volume-backup:latest
|
|
||||||
restart: always
|
|
||||||
volumes:
|
|
||||||
# volumes to backup.
|
|
||||||
- seafile_db:/backup/seafile_db:ro
|
|
||||||
- seafile_datastore:/backup/seafile_datastore:ro
|
|
||||||
- /mnt/backup/docker/ana-docker/seafile:/archive
|
|
||||||
# can omit below if not stopping service.
|
|
||||||
# - /var/run/docker.sock:/var/run/docker.sock:ro
|
|
||||||
env_file:
|
|
||||||
- .env
|
|
||||||
networks:
|
|
||||||
- tnet
|
|
||||||
volumes:
|
|
||||||
seafile_db: null
|
|
||||||
seafile_datastore: null
|
|
||||||
networks:
|
|
||||||
tnet:
|
|
||||||
name: traefik-net
|
|
||||||
external: true
|
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
version: "3"
|
|
||||||
services:
|
|
||||||
sillytavern:
|
|
||||||
build: ..
|
|
||||||
container_name: sillytavern
|
|
||||||
hostname: sillytavern
|
|
||||||
image: ghcr.io/sillytavern/sillytavern:latest
|
|
||||||
ports:
|
|
||||||
- 8100:8000
|
|
||||||
volumes:
|
|
||||||
- /opt/docker/data/sillytavern/config:/home/node/app/config
|
|
||||||
- /opt/docker/data/sillytavern/data:/home/node/app/data
|
|
||||||
- /opt/docker/data/sillytavern/plugins:/home/node/app/plugins
|
|
||||||
- /opt/docker/data/sillytavern/extensions:/home/node/app/public/scripts/extensions/third-party
|
|
||||||
restart: unless-stopped
|
|
||||||
labels:
|
|
||||||
- homepage.group=AI Systems
|
|
||||||
- homepage.name=Silly Tavern
|
|
||||||
- homepage.icon=mdi-chat
|
|
||||||
- homepage.description=Silly Tavern AI - ANA-Docker 8100
|
|
||||||
- homepage.href=http://10.250.50.70:8100
|
|
||||||
networks:
|
|
||||||
- tnet
|
|
||||||
networks:
|
|
||||||
tnet:
|
|
||||||
name: traefik-net
|
|
||||||
external: true
|
|
||||||
@@ -1,36 +0,0 @@
|
|||||||
#version: "3.3"
|
|
||||||
|
|
||||||
services:
|
|
||||||
traefik:
|
|
||||||
image: traefik:latest
|
|
||||||
container_name: traefik
|
|
||||||
command:
|
|
||||||
- --log.level=DEBUG
|
|
||||||
- --configFile=/etc/traefik/traefik.yml
|
|
||||||
- --api.insecure=true
|
|
||||||
- --providers.docker=true
|
|
||||||
- --providers.docker.exposedbydefault=false
|
|
||||||
- --entrypoints.web.address=:80
|
|
||||||
ports:
|
|
||||||
- 80:80
|
|
||||||
- 8380:8080
|
|
||||||
- 443:443
|
|
||||||
labels:
|
|
||||||
- homepage.group=PFI-ANA
|
|
||||||
- homepage.name=traefik
|
|
||||||
- homepage.icon=si-traefikproxy
|
|
||||||
- homepage.sitemonitor=http://10.250.50.70:8380
|
|
||||||
- homepage.href=http://10.250.50.70:8380
|
|
||||||
- homepage.widget.type=traefik
|
|
||||||
- homepage.widget.url=http://10.250.50.70:8380
|
|
||||||
volumes:
|
|
||||||
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
||||||
- /opt/docker/conf/traefik-ana/config:/etc/traefik
|
|
||||||
- /opt/docker/conf/traefik-ana/acme.json:/acme.json
|
|
||||||
networks:
|
|
||||||
- tnet
|
|
||||||
restart: unless-stopped
|
|
||||||
networks:
|
|
||||||
tnet:
|
|
||||||
name: traefik-net
|
|
||||||
external: true
|
|
||||||
@@ -1,31 +0,0 @@
|
|||||||
#version: '3'
|
|
||||||
services:
|
|
||||||
vaultwarden:
|
|
||||||
image: vaultwarden/server:latest
|
|
||||||
container_name: vaultwarden
|
|
||||||
volumes:
|
|
||||||
- /opt/docker/data/vaultwarden:/data
|
|
||||||
ports:
|
|
||||||
- 9080:80
|
|
||||||
restart: unless-stopped
|
|
||||||
environment:
|
|
||||||
- DATABASE_URL=${DB_URL}
|
|
||||||
labels:
|
|
||||||
- homepage.group=Apps
|
|
||||||
- homepage.name=Vaultwarden
|
|
||||||
- homepage.icon=si-bitwarden
|
|
||||||
- homepage.description=Password Vault (ana)
|
|
||||||
- homepage.sitemonitor=https://vaultwarden.phasefinal.com
|
|
||||||
- homepage.href=https://vaultwarden.phasefinal.com
|
|
||||||
- traefik.enable=true
|
|
||||||
- traefik.http.routers.vaultwarden.tls=true
|
|
||||||
- traefik.http.routers.vaultwarden.rule=Host(`vaultwarden.phasefinal.com`)
|
|
||||||
- traefik.http.routers.vaultwarden.tls.certresolver=anaprod
|
|
||||||
networks:
|
|
||||||
- tnet
|
|
||||||
env_file:
|
|
||||||
- .env
|
|
||||||
networks:
|
|
||||||
tnet:
|
|
||||||
name: traefik-net
|
|
||||||
external: true
|
|
||||||
46
conf/homepage/bookmarks.yaml
Executable file
46
conf/homepage/bookmarks.yaml
Executable file
@@ -0,0 +1,46 @@
|
|||||||
|
# For configuration options and examples, please see:
|
||||||
|
# https://gethomepage.dev/latest/configs/bookmarks
|
||||||
|
|
||||||
|
- UltraSeedbox:
|
||||||
|
- FileZilla:
|
||||||
|
- abbr: FZ
|
||||||
|
icon: si-filezilla
|
||||||
|
href: http://10.0.50.51:3000/
|
||||||
|
description: FTP Client
|
||||||
|
- Control Panel:
|
||||||
|
- abbr: CP
|
||||||
|
icon: si-bittorrent
|
||||||
|
href: http://cp.ultra.cc/
|
||||||
|
description: Ultraseedbox Control Panel
|
||||||
|
- ruTorrent:
|
||||||
|
- abbr: rt
|
||||||
|
icon: si-bittorrent
|
||||||
|
href: https://lkraven.hebe.usbx.me/rutorrent/
|
||||||
|
description: ruTorrent Client
|
||||||
|
- Sonarr:
|
||||||
|
- abbr: sr
|
||||||
|
icon: si-sonarr
|
||||||
|
href: https://lkraven.hebe.usbx.me/sonarr/
|
||||||
|
description: TV Shows
|
||||||
|
- Radarr:
|
||||||
|
- abbr: rr
|
||||||
|
icon: si-radarr
|
||||||
|
href: https://lkraven.hebe.usbx.me/radarr/
|
||||||
|
description: Movies
|
||||||
|
- Bazarr:
|
||||||
|
- abbr: br
|
||||||
|
icon: mdi-subtitles
|
||||||
|
href: https://lkraven.hebe.usbx.me/bazarr/
|
||||||
|
description: Subtitles
|
||||||
|
- Sabnzbd:
|
||||||
|
- abbr: nz
|
||||||
|
icon: mdi-newspaper
|
||||||
|
href: https://lkraven.hebe.usbx.me/sabnzbd
|
||||||
|
description: Newz Client
|
||||||
|
- Seedsync:
|
||||||
|
- abbr: sy
|
||||||
|
icon: mdi-download-box
|
||||||
|
href: http://10.0.50.51:8800/dashboard
|
||||||
|
description: Sync Client
|
||||||
|
|
||||||
|
|
||||||
0
conf/traefik-ana/config/acme.json → conf/homepage/custom.css
Normal file → Executable file
0
conf/traefik-ana/config/acme.json → conf/homepage/custom.css
Normal file → Executable file
0
conf/homepage/custom.js
Executable file
0
conf/homepage/custom.js
Executable file
38
conf/homepage/docker.yaml
Executable file
38
conf/homepage/docker.yaml
Executable file
@@ -0,0 +1,38 @@
|
|||||||
|
---
|
||||||
|
# For configuration options and examples, please see:
|
||||||
|
# https://gethomepage.dev/latest/configs/docker/
|
||||||
|
|
||||||
|
# my-docker:
|
||||||
|
# host: 127.0.0.1
|
||||||
|
# port: 2375
|
||||||
|
|
||||||
|
#my-docker:
|
||||||
|
# socket: /var/run/docker.sock
|
||||||
|
|
||||||
|
#esh-tinyserver:
|
||||||
|
# host: 172.18.0.1
|
||||||
|
# port: 2375
|
||||||
|
|
||||||
|
#esh-tinynas:
|
||||||
|
# host: 10.0.50.50
|
||||||
|
# port: 2375
|
||||||
|
|
||||||
|
esh-vm-docker:
|
||||||
|
host: 10.0.50.45
|
||||||
|
port: 2375
|
||||||
|
|
||||||
|
qnap-nas-docker:
|
||||||
|
host: 10.0.50.50
|
||||||
|
port: 2376
|
||||||
|
tls:
|
||||||
|
keyFile: nas-tls/key.pem
|
||||||
|
caFile: nas-tls/ca.pem
|
||||||
|
certFile: nas-tls/cert.pem
|
||||||
|
|
||||||
|
ana-pfi-docker:
|
||||||
|
host: 10.250.50.70
|
||||||
|
port: 2375
|
||||||
|
|
||||||
|
nh3-pfi-docker:
|
||||||
|
host: 10.100.50.40
|
||||||
|
port: 2375
|
||||||
BIN
conf/homepage/imgs/Thumbs.db
Executable file
BIN
conf/homepage/imgs/Thumbs.db
Executable file
Binary file not shown.
BIN
conf/homepage/imgs/bg1.jpg
Executable file
BIN
conf/homepage/imgs/bg1.jpg
Executable file
Binary file not shown.
|
After Width: | Height: | Size: 1.1 MiB |
2
conf/homepage/kubernetes.yaml
Executable file
2
conf/homepage/kubernetes.yaml
Executable file
@@ -0,0 +1,2 @@
|
|||||||
|
---
|
||||||
|
# sample kubernetes config
|
||||||
19532
conf/homepage/logs/homepage.log
Executable file
19532
conf/homepage/logs/homepage.log
Executable file
File diff suppressed because one or more lines are too long
35
conf/homepage/nas-tls/ca.pem
Executable file
35
conf/homepage/nas-tls/ca.pem
Executable file
@@ -0,0 +1,35 @@
|
|||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIIGDTCCA/WgAwIBAgIUegptAglGg0Y7zWeeNOBexDBps9UwDQYJKoZIhvcNAQEL
|
||||||
|
BQAwWjEaMBgGA1UEAxMRQ29udGFpbmVyIFN0YXRpb24xDTALBgNVBAoTBFFOQVAx
|
||||||
|
DzANBgNVBAgTBlRhaXBlaTEPMA0GA1UEBxMGVGFpcGVpMQswCQYDVQQGEwJUVzAe
|
||||||
|
Fw0yNDA0MTAwNTE2NTNaFw0yNzA0MTAwNTE2NTNaMFoxGjAYBgNVBAMTEUNvbnRh
|
||||||
|
aW5lciBTdGF0aW9uMQ0wCwYDVQQKEwRRTkFQMQ8wDQYDVQQIEwZUYWlwZWkxDzAN
|
||||||
|
BgNVBAcTBlRhaXBlaTELMAkGA1UEBhMCVFcwggIiMA0GCSqGSIb3DQEBAQUAA4IC
|
||||||
|
DwAwggIKAoICAQC+M0xd6vUUJg40m2BCC/bt8hCjo5XWmftPK/PMfPdhVAkrQgaJ
|
||||||
|
D+dGgEXSfgxurpdtbv0gJUPOd1+rCoSblGOcUsdMxofnx1NnEBBwUnmdr1ro/SqO
|
||||||
|
zP/Q8sasGim8w9ZD3fl3N3c1v8DD42sQ/m6FxWi7nAYV2QVg+pzsE51OdIAthA2A
|
||||||
|
oRhnvpRVXLUJktcajmgzHIc+LDT+ub6KWyW+uJhND5aeNnzK30g+AeXqPwEE0Xgs
|
||||||
|
vj+178uy4Vd5fnGKN77zGG8mxKtkgyT1pjk0N5SH9cpWC3hDMM+/x/dZzjdUuqKs
|
||||||
|
vvpS+Lk5ISMgrlzPoZxDU31q4ml/DE/1oVA9k+ljz7xwVxjWfL0IQFVT7Vr6IwdL
|
||||||
|
8BcdDXnXZqztAghYbu60orj06tUxV1gaH4Gj2Oc9ZaXj71TZT+k7OwNuFhbTn39Z
|
||||||
|
TJmTZ3R7yoGHk1B5WxNyPZPSl2bu1M9bbPfiyd3imfYTBewZAOgNRF3Z86F3AfF1
|
||||||
|
4vNqMvJ+F05bmKhRnvqY1Y5R9Ck4gSCI7OxzOSyCZFLXnQqBS7pzAQC+FqAM0wEW
|
||||||
|
jvPJyTtgfXEOS5BiM3VexvQ+SKekkdVx+miHTSxebHvuhPz/Vg2qtEaM9Urssbme
|
||||||
|
5SwHisyi8SNMebQxLiOhzTZ9+Jcf0HFMqPykM21rRzhH3rkxFB+kTD8EpwIDAQAB
|
||||||
|
o4HKMIHHMB0GA1UdDgQWBBRISO1k16KkLS1kZBzjFPtvNpX+RjCBlwYDVR0jBIGP
|
||||||
|
MIGMgBRISO1k16KkLS1kZBzjFPtvNpX+RqFepFwwWjEaMBgGA1UEAxMRQ29udGFp
|
||||||
|
bmVyIFN0YXRpb24xDTALBgNVBAoTBFFOQVAxDzANBgNVBAgTBlRhaXBlaTEPMA0G
|
||||||
|
A1UEBxMGVGFpcGVpMQswCQYDVQQGEwJUV4IUegptAglGg0Y7zWeeNOBexDBps9Uw
|
||||||
|
DAYDVR0TBAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAgEAef5iXOSd1HKU31dhPKnZ
|
||||||
|
C7trqG0sHkxW3rVsKo01GI8Zt3C1mG3Dl5vLjvvfa6Vt1C9RWxqusf3gi7XgwPhz
|
||||||
|
a9G02h8/mSVBVG/NVWLewbjxdxUIu99zvNwtFBmmTmUrB203hFppiNu+dsH1Sm84
|
||||||
|
YT1ctLmpGciyUR5Mt95xxPv+nzCtqfcrsTGD1QlRrGbmJQEddWn0ZKEaV57UrnAs
|
||||||
|
6M1H3J0faJmXZJba+ScFEZyqQeWoFC9V7nNnp/W+5UlBsIZKBNBAPRpvA11k3GlZ
|
||||||
|
wg5X2DsdIh0E5YqEJT93njEa9QGEVefdcrda4JbO7oWGrQ59Lu4Ei/wpp7QuQh+D
|
||||||
|
Lk8PbbMWEDLuJ5gfRrqkh6GTFlw5I9k9TGZsVDlZ7R2R4GouGdGfTy032uawUEg6
|
||||||
|
1hirsknRCPoC+G+6ItUlE+EDc9B2GElnKWFp/Z4DN+RQFnkq3flgvHpW/hTSNAMW
|
||||||
|
cMovQhQyWj5rG4sTHuUZoPcoGJKEp2zB2M3tKio7OlaLprWVa+Nf2sL4h5kLu8Wd
|
||||||
|
jwrtC/f5Yd6puGW38U68qX7n+1Go+2xmDzJHWWw3m0ak3xnmblgUNRYY/LeLVVc5
|
||||||
|
DTxCV1wuPU994hgMUf3upHpoPHLF5PvH76A+Rmd/ePXRMZsS3xTbg4mp5ZYXROdX
|
||||||
|
b5s/tfYuKsDrFcimnvXu9K0=
|
||||||
|
-----END CERTIFICATE-----
|
||||||
30
conf/homepage/nas-tls/cert.pem
Executable file
30
conf/homepage/nas-tls/cert.pem
Executable file
@@ -0,0 +1,30 @@
|
|||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
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
|
||||||
|
mvrGNhUzU4zKdkeWcRE9LZ4=
|
||||||
|
-----END CERTIFICATE-----
|
||||||
51
conf/homepage/nas-tls/key.pem
Executable file
51
conf/homepage/nas-tls/key.pem
Executable file
@@ -0,0 +1,51 @@
|
|||||||
|
-----BEGIN RSA PRIVATE KEY-----
|
||||||
|
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
|
||||||
|
-----END RSA PRIVATE KEY-----
|
||||||
95
conf/homepage/services.yaml
Executable file
95
conf/homepage/services.yaml
Executable file
@@ -0,0 +1,95 @@
|
|||||||
|
---
|
||||||
|
# For configuration options and examples, please see:
|
||||||
|
# https://gethomepage.dev/latest/configs/services
|
||||||
|
|
||||||
|
- ESH:
|
||||||
|
- Brother Printer:
|
||||||
|
href: http://10.0.90.125/
|
||||||
|
icon: mdi-printer
|
||||||
|
siteMonitor: http://10.0.90.125/
|
||||||
|
- Firewall:
|
||||||
|
href: https://10.0.250.1
|
||||||
|
icon: mdi-wall-fire
|
||||||
|
siteMonitor: https://10.0.250.1
|
||||||
|
description: esh-gw
|
||||||
|
- Switch-Garage:
|
||||||
|
href: http://10.0.250.2/
|
||||||
|
icon: mdi-switch
|
||||||
|
siteMonitor: http://10.0.250.2
|
||||||
|
description: esh-sw-g
|
||||||
|
- Switch-Media:
|
||||||
|
href: http://10.0.250.3/
|
||||||
|
icon: mdi-switch
|
||||||
|
siteMonitor: http://10.0.250.3
|
||||||
|
description: esh-sw-mda
|
||||||
|
- ESH-NAS:
|
||||||
|
href: https://10.0.50.50
|
||||||
|
icon: mdi-nas
|
||||||
|
siteMonitor: https://10.0.50.50
|
||||||
|
description: QNAP tvs-h1688x
|
||||||
|
- ESH-PVE:
|
||||||
|
href: https://10.0.250.35:8006
|
||||||
|
siteMonitor: https://10.0.250.35:8006
|
||||||
|
description: Proxmox Server
|
||||||
|
icon: si-proxmox
|
||||||
|
- ESH-VM-Docker:
|
||||||
|
icon: si-docker
|
||||||
|
ping: 10.0.50.45
|
||||||
|
description: Docker VM
|
||||||
|
|
||||||
|
- PFI-ANA:
|
||||||
|
- ANA-Firewall:
|
||||||
|
href: https://ana-fw.phasefinal.com/
|
||||||
|
icon: mdi-wall-fire
|
||||||
|
siteMonitor: https://10.250.250.1
|
||||||
|
description: ana-gw Fortigate 81F
|
||||||
|
- PFI-r750xs-kvm:
|
||||||
|
href: http://10.250.250.40/
|
||||||
|
ping: http://10.250.250.40/
|
||||||
|
icon: mdi-monitor
|
||||||
|
- PFI-r750xs-idrac:
|
||||||
|
href: https://10.250.250.30/
|
||||||
|
siteMonitor: https://10.250.250.30/
|
||||||
|
icon: si-dell
|
||||||
|
- PFI-PVE:
|
||||||
|
href: https://10.250.250.31:8006/
|
||||||
|
siteMonitor: https://10.250.250.31:8006/
|
||||||
|
description: Proxmox Server
|
||||||
|
icon: si-proxmox
|
||||||
|
- PFI-VM-Docker:
|
||||||
|
icon: si-docker
|
||||||
|
ping: 10.250.50.70
|
||||||
|
description: Docker VM
|
||||||
|
- PFI-ANA-ML1:
|
||||||
|
icon: mdi-brain
|
||||||
|
ping: 10.250.50.51
|
||||||
|
description: ML Server (10.250.50.51 ana)
|
||||||
|
|
||||||
|
|
||||||
|
- PFI-NH3:
|
||||||
|
- NH3-Firewall:
|
||||||
|
href: https://10.100.250.1
|
||||||
|
icon: mdi-wall-fire
|
||||||
|
siteMonitor: https://10.100.250.1
|
||||||
|
description: nh3-gw Fortigate 101F
|
||||||
|
- NH3-SW1:
|
||||||
|
href: https://10.100.250.2
|
||||||
|
icon: mdi-switch
|
||||||
|
ping: https://10.100.250.2
|
||||||
|
description: Mikrotik CRS328-24P-4S+
|
||||||
|
- NH3-NAS:
|
||||||
|
href: https://10.100.50.50
|
||||||
|
icon: mdi-nas
|
||||||
|
ping: 10.100.50.50
|
||||||
|
description: Synology NAS
|
||||||
|
- NH3-PVE:
|
||||||
|
href: https://10.100.250.60:8006/
|
||||||
|
siteMonitor: https://10.100.250.60:8006/
|
||||||
|
description: Proxmox Server
|
||||||
|
icon: si-proxmox
|
||||||
|
- NH3-VM-Docker:
|
||||||
|
icon: si-docker
|
||||||
|
ping: 10.100.50.40
|
||||||
|
description: Docker VM
|
||||||
|
|
||||||
|
|
||||||
36
conf/homepage/settings.yaml
Executable file
36
conf/homepage/settings.yaml
Executable file
@@ -0,0 +1,36 @@
|
|||||||
|
---
|
||||||
|
# For configuration options and examples, please see:
|
||||||
|
# https://gethomepage.dev/latest/configs/settings
|
||||||
|
title: ... all my base ...
|
||||||
|
theme: dark
|
||||||
|
color: slate
|
||||||
|
background:
|
||||||
|
image: https://w.wallhaven.cc/full/p9/wallhaven-p9gr2p.jpg
|
||||||
|
blur: sm
|
||||||
|
# saturate: 50
|
||||||
|
opacity: 20
|
||||||
|
# brightness: 10
|
||||||
|
#cardBlur: sm
|
||||||
|
headerStyle: boxedWidgets
|
||||||
|
providers:
|
||||||
|
openweathermap: openweathermapapikey
|
||||||
|
weatherapi: weatherapiapikey
|
||||||
|
|
||||||
|
quicklaunch:
|
||||||
|
searchDescriptions: true
|
||||||
|
hideInternetSearch: true
|
||||||
|
showSearchSuggestions: true
|
||||||
|
hideVisitURL: true
|
||||||
|
|
||||||
|
showStats: false
|
||||||
|
statusStyle: ""
|
||||||
|
|
||||||
|
layout:
|
||||||
|
Media:
|
||||||
|
Apps:
|
||||||
|
UltraSeedbox:
|
||||||
|
style: row
|
||||||
|
columns: 4
|
||||||
|
ESH:
|
||||||
|
PFI-ANA:
|
||||||
|
PFI-NH3:
|
||||||
12
conf/homepage/widgets.yaml
Executable file
12
conf/homepage/widgets.yaml
Executable file
@@ -0,0 +1,12 @@
|
|||||||
|
---
|
||||||
|
# For configuration options and examples, please see:
|
||||||
|
# https://gethomepage.dev/latest/configs/service-widgets
|
||||||
|
|
||||||
|
- resources:
|
||||||
|
cpu: true
|
||||||
|
memory: true
|
||||||
|
disk: /
|
||||||
|
|
||||||
|
- search:
|
||||||
|
provider: duckduckgo
|
||||||
|
target: _blank
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
configs:
|
|
||||||
|
|
||||||
noti-mm@phasefinal.com:
|
|
||||||
urls:
|
|
||||||
- mmosts://notibot@mm.phasefinal.com:443/bhsxzdyeqbyqiqwrn8zu4rsuta
|
|
||||||
# - tgram://bottoken
|
|
||||||
# - mmosts://notibot@mm.phasefinal.com:443/p1b4agsfkjg3ikhxtc873uui4a?channel=Notifications
|
|
||||||
|
|
||||||
noti-lk@phasefinal.com:
|
|
||||||
urls:
|
|
||||||
- sendgrid://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:notifications@phasefinal.com/lkraven@lkraven.com
|
|
||||||
|
|
||||||
noti-vhpfi@phasefinal.com:
|
|
||||||
urls:
|
|
||||||
- sendgrid://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:notifications@phasefinal.com/vh@phasefinal.com
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -1,651 +0,0 @@
|
|||||||
{
|
|
||||||
"ServiceSettings": {
|
|
||||||
"SiteURL": "https://mm.phasefinal.com",
|
|
||||||
"WebsocketURL": "",
|
|
||||||
"LicenseFileLocation": "",
|
|
||||||
"ListenAddress": ":8065",
|
|
||||||
"ConnectionSecurity": "",
|
|
||||||
"TLSCertFile": "",
|
|
||||||
"TLSKeyFile": "",
|
|
||||||
"TLSMinVer": "1.2",
|
|
||||||
"TLSStrictTransport": false,
|
|
||||||
"TLSStrictTransportMaxAge": 63072000,
|
|
||||||
"TLSOverwriteCiphers": [],
|
|
||||||
"UseLetsEncrypt": false,
|
|
||||||
"LetsEncryptCertificateCacheFile": "./config/letsencrypt.cache",
|
|
||||||
"Forward80To443": false,
|
|
||||||
"TrustedProxyIPHeader": [],
|
|
||||||
"ReadTimeout": 300,
|
|
||||||
"WriteTimeout": 300,
|
|
||||||
"IdleTimeout": 60,
|
|
||||||
"MaximumLoginAttempts": 10,
|
|
||||||
"GoroutineHealthThreshold": -1,
|
|
||||||
"EnableOAuthServiceProvider": true,
|
|
||||||
"EnableIncomingWebhooks": true,
|
|
||||||
"EnableOutgoingWebhooks": true,
|
|
||||||
"EnableOutgoingOAuthConnections": false,
|
|
||||||
"EnableCommands": true,
|
|
||||||
"OutgoingIntegrationRequestsTimeout": 30,
|
|
||||||
"EnablePostUsernameOverride": true,
|
|
||||||
"EnablePostIconOverride": true,
|
|
||||||
"GoogleDeveloperKey": "",
|
|
||||||
"EnableLinkPreviews": true,
|
|
||||||
"EnablePermalinkPreviews": true,
|
|
||||||
"RestrictLinkPreviews": "",
|
|
||||||
"EnableTesting": false,
|
|
||||||
"EnableDeveloper": false,
|
|
||||||
"DeveloperFlags": "",
|
|
||||||
"EnableClientPerformanceDebugging": false,
|
|
||||||
"EnableOpenTracing": false,
|
|
||||||
"EnableSecurityFixAlert": true,
|
|
||||||
"EnableInsecureOutgoingConnections": false,
|
|
||||||
"AllowedUntrustedInternalConnections": "",
|
|
||||||
"EnableMultifactorAuthentication": false,
|
|
||||||
"EnforceMultifactorAuthentication": false,
|
|
||||||
"EnableUserAccessTokens": true,
|
|
||||||
"AllowCorsFrom": "",
|
|
||||||
"CorsExposedHeaders": "",
|
|
||||||
"CorsAllowCredentials": false,
|
|
||||||
"CorsDebug": false,
|
|
||||||
"AllowCookiesForSubdomains": false,
|
|
||||||
"ExtendSessionLengthWithActivity": false,
|
|
||||||
"SessionLengthWebInDays": 180,
|
|
||||||
"SessionLengthWebInHours": 4320,
|
|
||||||
"SessionLengthMobileInDays": 180,
|
|
||||||
"SessionLengthMobileInHours": 4320,
|
|
||||||
"SessionLengthSSOInDays": 30,
|
|
||||||
"SessionLengthSSOInHours": 720,
|
|
||||||
"SessionCacheInMinutes": 10,
|
|
||||||
"SessionIdleTimeoutInMinutes": 43200,
|
|
||||||
"WebsocketSecurePort": 443,
|
|
||||||
"WebsocketPort": 80,
|
|
||||||
"WebserverMode": "gzip",
|
|
||||||
"EnableGifPicker": true,
|
|
||||||
"GiphySdkKey": "",
|
|
||||||
"EnableCustomEmoji": true,
|
|
||||||
"EnableEmojiPicker": true,
|
|
||||||
"PostEditTimeLimit": -1,
|
|
||||||
"TimeBetweenUserTypingUpdatesMilliseconds": 5000,
|
|
||||||
"EnablePostSearch": true,
|
|
||||||
"EnableFileSearch": true,
|
|
||||||
"MinimumHashtagLength": 3,
|
|
||||||
"EnableUserTypingMessages": true,
|
|
||||||
"EnableChannelViewedMessages": true,
|
|
||||||
"EnableUserStatuses": true,
|
|
||||||
"ExperimentalEnableAuthenticationTransfer": true,
|
|
||||||
"ClusterLogTimeoutMilliseconds": 2000,
|
|
||||||
"EnablePreviewFeatures": true,
|
|
||||||
"EnableTutorial": true,
|
|
||||||
"EnableOnboardingFlow": true,
|
|
||||||
"ExperimentalEnableDefaultChannelLeaveJoinMessages": true,
|
|
||||||
"ExperimentalGroupUnreadChannels": "disabled",
|
|
||||||
"EnableAPITeamDeletion": false,
|
|
||||||
"EnableAPITriggerAdminNotifications": false,
|
|
||||||
"EnableAPIUserDeletion": false,
|
|
||||||
"ExperimentalEnableHardenedMode": false,
|
|
||||||
"ExperimentalStrictCSRFEnforcement": false,
|
|
||||||
"EnableEmailInvitations": true,
|
|
||||||
"DisableBotsWhenOwnerIsDeactivated": true,
|
|
||||||
"EnableBotAccountCreation": true,
|
|
||||||
"EnableSVGs": true,
|
|
||||||
"EnableLatex": true,
|
|
||||||
"EnableInlineLatex": true,
|
|
||||||
"PostPriority": true,
|
|
||||||
"AllowPersistentNotifications": true,
|
|
||||||
"AllowPersistentNotificationsForGuests": false,
|
|
||||||
"PersistentNotificationIntervalMinutes": 5,
|
|
||||||
"PersistentNotificationMaxCount": 6,
|
|
||||||
"PersistentNotificationMaxRecipients": 5,
|
|
||||||
"EnableAPIChannelDeletion": false,
|
|
||||||
"EnableLocalMode": false,
|
|
||||||
"LocalModeSocketLocation": "/var/tmp/mattermost_local.socket",
|
|
||||||
"EnableAWSMetering": false,
|
|
||||||
"SplitKey": "",
|
|
||||||
"FeatureFlagSyncIntervalSeconds": 30,
|
|
||||||
"DebugSplit": false,
|
|
||||||
"ThreadAutoFollow": true,
|
|
||||||
"CollapsedThreads": "always_on",
|
|
||||||
"ManagedResourcePaths": "",
|
|
||||||
"EnableCustomGroups": true,
|
|
||||||
"SelfHostedPurchase": true,
|
|
||||||
"AllowSyncedDrafts": true,
|
|
||||||
"UniqueEmojiReactionLimitPerPost": 50,
|
|
||||||
"RefreshPostStatsRunTime": "00:00",
|
|
||||||
"MaximumPayloadSizeBytes": 300000
|
|
||||||
},
|
|
||||||
"TeamSettings": {
|
|
||||||
"SiteName": "Mattermost",
|
|
||||||
"MaxUsersPerTeam": 50,
|
|
||||||
"EnableJoinLeaveMessageByDefault": true,
|
|
||||||
"EnableUserCreation": true,
|
|
||||||
"EnableOpenServer": false,
|
|
||||||
"EnableUserDeactivation": false,
|
|
||||||
"RestrictCreationToDomains": "",
|
|
||||||
"EnableCustomUserStatuses": true,
|
|
||||||
"EnableCustomBrand": false,
|
|
||||||
"CustomBrandText": "",
|
|
||||||
"CustomDescriptionText": "",
|
|
||||||
"RestrictDirectMessage": "any",
|
|
||||||
"EnableLastActiveTime": true,
|
|
||||||
"UserStatusAwayTimeout": 300,
|
|
||||||
"MaxChannelsPerTeam": 2000,
|
|
||||||
"MaxNotificationsPerChannel": 1000,
|
|
||||||
"EnableConfirmNotificationsToChannel": true,
|
|
||||||
"TeammateNameDisplay": "username",
|
|
||||||
"ExperimentalViewArchivedChannels": true,
|
|
||||||
"ExperimentalEnableAutomaticReplies": false,
|
|
||||||
"LockTeammateNameDisplay": false,
|
|
||||||
"ExperimentalPrimaryTeam": "",
|
|
||||||
"ExperimentalDefaultChannels": []
|
|
||||||
},
|
|
||||||
"ClientRequirements": {
|
|
||||||
"AndroidLatestVersion": "",
|
|
||||||
"AndroidMinVersion": "",
|
|
||||||
"IosLatestVersion": "",
|
|
||||||
"IosMinVersion": ""
|
|
||||||
},
|
|
||||||
"SqlSettings": {
|
|
||||||
"DriverName": "postgres",
|
|
||||||
"DataSource": "postgres://mmuser:mostest@localhost/mattermost_test?sslmode=disable\u0026connect_timeout=10\u0026binary_parameters=yes",
|
|
||||||
"DataSourceReplicas": [],
|
|
||||||
"DataSourceSearchReplicas": [],
|
|
||||||
"MaxIdleConns": 20,
|
|
||||||
"ConnMaxLifetimeMilliseconds": 3600000,
|
|
||||||
"ConnMaxIdleTimeMilliseconds": 300000,
|
|
||||||
"MaxOpenConns": 300,
|
|
||||||
"Trace": false,
|
|
||||||
"AtRestEncryptKey": "7t7pes56pe4fexqb68tcd1yndfgw1nbj",
|
|
||||||
"QueryTimeout": 30,
|
|
||||||
"DisableDatabaseSearch": false,
|
|
||||||
"MigrationsStatementTimeoutSeconds": 100000,
|
|
||||||
"ReplicaLagSettings": [],
|
|
||||||
"ReplicaMonitorIntervalSeconds": 5
|
|
||||||
},
|
|
||||||
"LogSettings": {
|
|
||||||
"EnableConsole": true,
|
|
||||||
"ConsoleLevel": "DEBUG",
|
|
||||||
"ConsoleJson": true,
|
|
||||||
"EnableColor": false,
|
|
||||||
"EnableFile": true,
|
|
||||||
"FileLevel": "INFO",
|
|
||||||
"FileJson": true,
|
|
||||||
"FileLocation": "",
|
|
||||||
"EnableWebhookDebugging": true,
|
|
||||||
"EnableDiagnostics": true,
|
|
||||||
"VerboseDiagnostics": false,
|
|
||||||
"EnableSentry": true,
|
|
||||||
"AdvancedLoggingJSON": {},
|
|
||||||
"AdvancedLoggingConfig": "",
|
|
||||||
"MaxFieldSize": 2048
|
|
||||||
},
|
|
||||||
"ExperimentalAuditSettings": {
|
|
||||||
"FileEnabled": false,
|
|
||||||
"FileName": "",
|
|
||||||
"FileMaxSizeMB": 100,
|
|
||||||
"FileMaxAgeDays": 0,
|
|
||||||
"FileMaxBackups": 0,
|
|
||||||
"FileCompress": false,
|
|
||||||
"FileMaxQueueSize": 1000,
|
|
||||||
"AdvancedLoggingJSON": {},
|
|
||||||
"AdvancedLoggingConfig": ""
|
|
||||||
},
|
|
||||||
"NotificationLogSettings": {
|
|
||||||
"EnableConsole": true,
|
|
||||||
"ConsoleLevel": "DEBUG",
|
|
||||||
"ConsoleJson": true,
|
|
||||||
"EnableColor": false,
|
|
||||||
"EnableFile": true,
|
|
||||||
"FileLevel": "INFO",
|
|
||||||
"FileJson": true,
|
|
||||||
"FileLocation": "",
|
|
||||||
"AdvancedLoggingJSON": {},
|
|
||||||
"AdvancedLoggingConfig": ""
|
|
||||||
},
|
|
||||||
"PasswordSettings": {
|
|
||||||
"MinimumLength": 8,
|
|
||||||
"Lowercase": false,
|
|
||||||
"Number": false,
|
|
||||||
"Uppercase": false,
|
|
||||||
"Symbol": false,
|
|
||||||
"EnableForgotLink": true
|
|
||||||
},
|
|
||||||
"FileSettings": {
|
|
||||||
"EnableFileAttachments": true,
|
|
||||||
"EnableMobileUpload": true,
|
|
||||||
"EnableMobileDownload": true,
|
|
||||||
"MaxFileSize": 104857600,
|
|
||||||
"MaxImageResolution": 33177600,
|
|
||||||
"MaxImageDecoderConcurrency": -1,
|
|
||||||
"DriverName": "local",
|
|
||||||
"Directory": "./data/",
|
|
||||||
"EnablePublicLink": false,
|
|
||||||
"ExtractContent": true,
|
|
||||||
"ArchiveRecursion": false,
|
|
||||||
"PublicLinkSalt": "wne95wt3pyh4kp4eyjjrb7yjy1pki3xo",
|
|
||||||
"InitialFont": "nunito-bold.ttf",
|
|
||||||
"AmazonS3AccessKeyId": "",
|
|
||||||
"AmazonS3SecretAccessKey": "",
|
|
||||||
"AmazonS3Bucket": "",
|
|
||||||
"AmazonS3PathPrefix": "",
|
|
||||||
"AmazonS3Region": "",
|
|
||||||
"AmazonS3Endpoint": "s3.amazonaws.com",
|
|
||||||
"AmazonS3SSL": true,
|
|
||||||
"AmazonS3SignV2": false,
|
|
||||||
"AmazonS3SSE": false,
|
|
||||||
"AmazonS3Trace": false,
|
|
||||||
"AmazonS3RequestTimeoutMilliseconds": 30000,
|
|
||||||
"AmazonS3UploadPartSizeBytes": 5242880,
|
|
||||||
"DedicatedExportStore": false,
|
|
||||||
"ExportDriverName": "local",
|
|
||||||
"ExportDirectory": "./data/",
|
|
||||||
"ExportAmazonS3AccessKeyId": "",
|
|
||||||
"ExportAmazonS3SecretAccessKey": "",
|
|
||||||
"ExportAmazonS3Bucket": "",
|
|
||||||
"ExportAmazonS3PathPrefix": "",
|
|
||||||
"ExportAmazonS3Region": "",
|
|
||||||
"ExportAmazonS3Endpoint": "s3.amazonaws.com",
|
|
||||||
"ExportAmazonS3SSL": true,
|
|
||||||
"ExportAmazonS3SignV2": false,
|
|
||||||
"ExportAmazonS3SSE": false,
|
|
||||||
"ExportAmazonS3Trace": false,
|
|
||||||
"ExportAmazonS3RequestTimeoutMilliseconds": 30000,
|
|
||||||
"ExportAmazonS3PresignExpiresSeconds": 21600,
|
|
||||||
"ExportAmazonS3UploadPartSizeBytes": 104857600
|
|
||||||
},
|
|
||||||
"EmailSettings": {
|
|
||||||
"EnableSignUpWithEmail": true,
|
|
||||||
"EnableSignInWithEmail": true,
|
|
||||||
"EnableSignInWithUsername": true,
|
|
||||||
"SendEmailNotifications": true,
|
|
||||||
"UseChannelInEmailNotifications": false,
|
|
||||||
"RequireEmailVerification": false,
|
|
||||||
"FeedbackName": "PFI Mattermost",
|
|
||||||
"FeedbackEmail": "mattermost@phasefinal.com",
|
|
||||||
"ReplyToAddress": "",
|
|
||||||
"FeedbackOrganization": "",
|
|
||||||
"EnableSMTPAuth": true,
|
|
||||||
"SMTPUsername": "apikey",
|
|
||||||
"SMTPPassword": "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",
|
|
||||||
"SMTPServer": "smtp.sendgrid.net",
|
|
||||||
"SMTPPort": "465",
|
|
||||||
"SMTPServerTimeout": 10,
|
|
||||||
"ConnectionSecurity": "TLS",
|
|
||||||
"SendPushNotifications": true,
|
|
||||||
"PushNotificationServer": "https://push-test.mattermost.com",
|
|
||||||
"PushNotificationContents": "full",
|
|
||||||
"PushNotificationBuffer": 1000,
|
|
||||||
"EnableEmailBatching": true,
|
|
||||||
"EmailBatchingBufferSize": 256,
|
|
||||||
"EmailBatchingInterval": 30,
|
|
||||||
"EnablePreviewModeBanner": false,
|
|
||||||
"SkipServerCertificateVerification": false,
|
|
||||||
"EmailNotificationContentsType": "full",
|
|
||||||
"LoginButtonColor": "#0000",
|
|
||||||
"LoginButtonBorderColor": "#2389D7",
|
|
||||||
"LoginButtonTextColor": "#2389D7"
|
|
||||||
},
|
|
||||||
"RateLimitSettings": {
|
|
||||||
"Enable": false,
|
|
||||||
"PerSec": 10,
|
|
||||||
"MaxBurst": 100,
|
|
||||||
"MemoryStoreSize": 10000,
|
|
||||||
"VaryByRemoteAddr": true,
|
|
||||||
"VaryByUser": false,
|
|
||||||
"VaryByHeader": ""
|
|
||||||
},
|
|
||||||
"PrivacySettings": {
|
|
||||||
"ShowEmailAddress": true,
|
|
||||||
"ShowFullName": true
|
|
||||||
},
|
|
||||||
"SupportSettings": {
|
|
||||||
"TermsOfServiceLink": "https://mattermost.com/terms-of-use/",
|
|
||||||
"PrivacyPolicyLink": "https://mattermost.com/privacy-policy/",
|
|
||||||
"AboutLink": "https://docs.mattermost.com/about/product.html/",
|
|
||||||
"HelpLink": "https://mattermost.com/default-help/",
|
|
||||||
"ReportAProblemLink": "https://mattermost.com/default-report-a-problem/",
|
|
||||||
"ForgotPasswordLink": "",
|
|
||||||
"SupportEmail": "support@phasefinal.com",
|
|
||||||
"CustomTermsOfServiceEnabled": false,
|
|
||||||
"CustomTermsOfServiceReAcceptancePeriod": 365,
|
|
||||||
"EnableAskCommunityLink": true
|
|
||||||
},
|
|
||||||
"AnnouncementSettings": {
|
|
||||||
"EnableBanner": false,
|
|
||||||
"BannerText": "",
|
|
||||||
"BannerColor": "#f2a93b",
|
|
||||||
"BannerTextColor": "#333333",
|
|
||||||
"AllowBannerDismissal": true,
|
|
||||||
"AdminNoticesEnabled": true,
|
|
||||||
"UserNoticesEnabled": true,
|
|
||||||
"NoticesURL": "https://notices.mattermost.com/",
|
|
||||||
"NoticesFetchFrequency": 3600,
|
|
||||||
"NoticesSkipCache": false
|
|
||||||
},
|
|
||||||
"ThemeSettings": {
|
|
||||||
"EnableThemeSelection": true,
|
|
||||||
"DefaultTheme": "default",
|
|
||||||
"AllowCustomThemes": true,
|
|
||||||
"AllowedThemes": []
|
|
||||||
},
|
|
||||||
"GitLabSettings": {
|
|
||||||
"Enable": false,
|
|
||||||
"Secret": "",
|
|
||||||
"Id": "",
|
|
||||||
"Scope": "",
|
|
||||||
"AuthEndpoint": "",
|
|
||||||
"TokenEndpoint": "",
|
|
||||||
"UserAPIEndpoint": "",
|
|
||||||
"DiscoveryEndpoint": "",
|
|
||||||
"ButtonText": "",
|
|
||||||
"ButtonColor": ""
|
|
||||||
},
|
|
||||||
"GoogleSettings": {
|
|
||||||
"Enable": false,
|
|
||||||
"Secret": "",
|
|
||||||
"Id": "",
|
|
||||||
"Scope": "profile email",
|
|
||||||
"AuthEndpoint": "https://accounts.google.com/o/oauth2/v2/auth",
|
|
||||||
"TokenEndpoint": "https://www.googleapis.com/oauth2/v4/token",
|
|
||||||
"UserAPIEndpoint": "https://people.googleapis.com/v1/people/me?personFields=names,emailAddresses,nicknames,metadata",
|
|
||||||
"DiscoveryEndpoint": "",
|
|
||||||
"ButtonText": "",
|
|
||||||
"ButtonColor": ""
|
|
||||||
},
|
|
||||||
"Office365Settings": {
|
|
||||||
"Enable": false,
|
|
||||||
"Secret": "",
|
|
||||||
"Id": "",
|
|
||||||
"Scope": "User.Read",
|
|
||||||
"AuthEndpoint": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize",
|
|
||||||
"TokenEndpoint": "https://login.microsoftonline.com/common/oauth2/v2.0/token",
|
|
||||||
"UserAPIEndpoint": "https://graph.microsoft.com/v1.0/me",
|
|
||||||
"DiscoveryEndpoint": "",
|
|
||||||
"DirectoryId": ""
|
|
||||||
},
|
|
||||||
"OpenIdSettings": {
|
|
||||||
"Enable": false,
|
|
||||||
"Secret": "",
|
|
||||||
"Id": "",
|
|
||||||
"Scope": "profile openid email",
|
|
||||||
"AuthEndpoint": "",
|
|
||||||
"TokenEndpoint": "",
|
|
||||||
"UserAPIEndpoint": "",
|
|
||||||
"DiscoveryEndpoint": "",
|
|
||||||
"ButtonText": "",
|
|
||||||
"ButtonColor": "#145DBF"
|
|
||||||
},
|
|
||||||
"LdapSettings": {
|
|
||||||
"Enable": false,
|
|
||||||
"EnableSync": false,
|
|
||||||
"LdapServer": "",
|
|
||||||
"LdapPort": 389,
|
|
||||||
"ConnectionSecurity": "",
|
|
||||||
"BaseDN": "",
|
|
||||||
"BindUsername": "",
|
|
||||||
"BindPassword": "",
|
|
||||||
"UserFilter": "",
|
|
||||||
"GroupFilter": "",
|
|
||||||
"GuestFilter": "",
|
|
||||||
"EnableAdminFilter": false,
|
|
||||||
"AdminFilter": "",
|
|
||||||
"GroupDisplayNameAttribute": "",
|
|
||||||
"GroupIdAttribute": "",
|
|
||||||
"FirstNameAttribute": "",
|
|
||||||
"LastNameAttribute": "",
|
|
||||||
"EmailAttribute": "",
|
|
||||||
"UsernameAttribute": "",
|
|
||||||
"NicknameAttribute": "",
|
|
||||||
"IdAttribute": "",
|
|
||||||
"PositionAttribute": "",
|
|
||||||
"LoginIdAttribute": "",
|
|
||||||
"PictureAttribute": "",
|
|
||||||
"SyncIntervalMinutes": 60,
|
|
||||||
"SkipCertificateVerification": false,
|
|
||||||
"PublicCertificateFile": "",
|
|
||||||
"PrivateKeyFile": "",
|
|
||||||
"QueryTimeout": 60,
|
|
||||||
"MaxPageSize": 0,
|
|
||||||
"LoginFieldName": "",
|
|
||||||
"LoginButtonColor": "#0000",
|
|
||||||
"LoginButtonBorderColor": "#2389D7",
|
|
||||||
"LoginButtonTextColor": "#2389D7",
|
|
||||||
"Trace": false
|
|
||||||
},
|
|
||||||
"ComplianceSettings": {
|
|
||||||
"Enable": false,
|
|
||||||
"Directory": "./data/",
|
|
||||||
"EnableDaily": false,
|
|
||||||
"BatchSize": 30000
|
|
||||||
},
|
|
||||||
"LocalizationSettings": {
|
|
||||||
"DefaultServerLocale": "en",
|
|
||||||
"DefaultClientLocale": "en",
|
|
||||||
"AvailableLocales": ""
|
|
||||||
},
|
|
||||||
"SamlSettings": {
|
|
||||||
"Enable": false,
|
|
||||||
"EnableSyncWithLdap": false,
|
|
||||||
"EnableSyncWithLdapIncludeAuth": false,
|
|
||||||
"IgnoreGuestsLdapSync": false,
|
|
||||||
"Verify": true,
|
|
||||||
"Encrypt": true,
|
|
||||||
"SignRequest": false,
|
|
||||||
"IdpURL": "",
|
|
||||||
"IdpDescriptorURL": "",
|
|
||||||
"IdpMetadataURL": "",
|
|
||||||
"ServiceProviderIdentifier": "",
|
|
||||||
"AssertionConsumerServiceURL": "",
|
|
||||||
"SignatureAlgorithm": "RSAwithSHA1",
|
|
||||||
"CanonicalAlgorithm": "Canonical1.0",
|
|
||||||
"ScopingIDPProviderId": "",
|
|
||||||
"ScopingIDPName": "",
|
|
||||||
"IdpCertificateFile": "",
|
|
||||||
"PublicCertificateFile": "",
|
|
||||||
"PrivateKeyFile": "",
|
|
||||||
"IdAttribute": "",
|
|
||||||
"GuestAttribute": "",
|
|
||||||
"EnableAdminAttribute": false,
|
|
||||||
"AdminAttribute": "",
|
|
||||||
"FirstNameAttribute": "",
|
|
||||||
"LastNameAttribute": "",
|
|
||||||
"EmailAttribute": "",
|
|
||||||
"UsernameAttribute": "",
|
|
||||||
"NicknameAttribute": "",
|
|
||||||
"LocaleAttribute": "",
|
|
||||||
"PositionAttribute": "",
|
|
||||||
"LoginButtonText": "SAML",
|
|
||||||
"LoginButtonColor": "#34a28b",
|
|
||||||
"LoginButtonBorderColor": "#2389D7",
|
|
||||||
"LoginButtonTextColor": "#ffffff"
|
|
||||||
},
|
|
||||||
"NativeAppSettings": {
|
|
||||||
"AppCustomURLSchemes": [
|
|
||||||
"mmauth://",
|
|
||||||
"mmauthbeta://"
|
|
||||||
],
|
|
||||||
"AppDownloadLink": "https://mattermost.com/download/#mattermostApps",
|
|
||||||
"AndroidAppDownloadLink": "https://mattermost.com/mattermost-android-app/",
|
|
||||||
"IosAppDownloadLink": "https://mattermost.com/mattermost-ios-app/"
|
|
||||||
},
|
|
||||||
"ClusterSettings": {
|
|
||||||
"Enable": false,
|
|
||||||
"ClusterName": "",
|
|
||||||
"OverrideHostname": "",
|
|
||||||
"NetworkInterface": "",
|
|
||||||
"BindAddress": "",
|
|
||||||
"AdvertiseAddress": "",
|
|
||||||
"UseIPAddress": true,
|
|
||||||
"EnableGossipCompression": true,
|
|
||||||
"EnableExperimentalGossipEncryption": false,
|
|
||||||
"ReadOnlyConfig": true,
|
|
||||||
"GossipPort": 8074
|
|
||||||
},
|
|
||||||
"MetricsSettings": {
|
|
||||||
"Enable": false,
|
|
||||||
"BlockProfileRate": 0,
|
|
||||||
"ListenAddress": ":8067"
|
|
||||||
},
|
|
||||||
"ExperimentalSettings": {
|
|
||||||
"ClientSideCertEnable": false,
|
|
||||||
"ClientSideCertCheck": "secondary",
|
|
||||||
"LinkMetadataTimeoutMilliseconds": 5000,
|
|
||||||
"RestrictSystemAdmin": false,
|
|
||||||
"EnableSharedChannels": false,
|
|
||||||
"EnableRemoteClusterService": false,
|
|
||||||
"DisableAppBar": false,
|
|
||||||
"DisableRefetchingOnBrowserFocus": false,
|
|
||||||
"DelayChannelAutocomplete": false
|
|
||||||
},
|
|
||||||
"AnalyticsSettings": {
|
|
||||||
"MaxUsersForStatistics": 2500
|
|
||||||
},
|
|
||||||
"ElasticsearchSettings": {
|
|
||||||
"ConnectionURL": "http://localhost:9200",
|
|
||||||
"Username": "elastic",
|
|
||||||
"Password": "changeme",
|
|
||||||
"EnableIndexing": false,
|
|
||||||
"EnableSearching": false,
|
|
||||||
"EnableAutocomplete": false,
|
|
||||||
"Sniff": true,
|
|
||||||
"PostIndexReplicas": 1,
|
|
||||||
"PostIndexShards": 1,
|
|
||||||
"ChannelIndexReplicas": 1,
|
|
||||||
"ChannelIndexShards": 1,
|
|
||||||
"UserIndexReplicas": 1,
|
|
||||||
"UserIndexShards": 1,
|
|
||||||
"AggregatePostsAfterDays": 365,
|
|
||||||
"PostsAggregatorJobStartTime": "03:00",
|
|
||||||
"IndexPrefix": "",
|
|
||||||
"LiveIndexingBatchSize": 1,
|
|
||||||
"BatchSize": 10000,
|
|
||||||
"RequestTimeoutSeconds": 30,
|
|
||||||
"SkipTLSVerification": false,
|
|
||||||
"CA": "",
|
|
||||||
"ClientCert": "",
|
|
||||||
"ClientKey": "",
|
|
||||||
"Trace": "",
|
|
||||||
"IgnoredPurgeIndexes": ""
|
|
||||||
},
|
|
||||||
"BleveSettings": {
|
|
||||||
"IndexDir": "",
|
|
||||||
"EnableIndexing": false,
|
|
||||||
"EnableSearching": false,
|
|
||||||
"EnableAutocomplete": false,
|
|
||||||
"BatchSize": 10000
|
|
||||||
},
|
|
||||||
"DataRetentionSettings": {
|
|
||||||
"EnableMessageDeletion": false,
|
|
||||||
"EnableFileDeletion": false,
|
|
||||||
"EnableBoardsDeletion": false,
|
|
||||||
"MessageRetentionDays": 365,
|
|
||||||
"MessageRetentionHours": 0,
|
|
||||||
"FileRetentionDays": 365,
|
|
||||||
"FileRetentionHours": 0,
|
|
||||||
"BoardsRetentionDays": 365,
|
|
||||||
"DeletionJobStartTime": "02:00",
|
|
||||||
"BatchSize": 3000,
|
|
||||||
"TimeBetweenBatchesMilliseconds": 100,
|
|
||||||
"RetentionIdsBatchSize": 100
|
|
||||||
},
|
|
||||||
"MessageExportSettings": {
|
|
||||||
"EnableExport": false,
|
|
||||||
"ExportFormat": "actiance",
|
|
||||||
"DailyRunTime": "01:00",
|
|
||||||
"ExportFromTimestamp": 0,
|
|
||||||
"BatchSize": 10000,
|
|
||||||
"DownloadExportResults": false,
|
|
||||||
"GlobalRelaySettings": {
|
|
||||||
"CustomerType": "A9",
|
|
||||||
"SMTPUsername": "",
|
|
||||||
"SMTPPassword": "",
|
|
||||||
"EmailAddress": "",
|
|
||||||
"SMTPServerTimeout": 1800,
|
|
||||||
"CustomSMTPServerName": "",
|
|
||||||
"CustomSMTPPort": "25"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"JobSettings": {
|
|
||||||
"RunJobs": true,
|
|
||||||
"RunScheduler": true,
|
|
||||||
"CleanupJobsThresholdDays": -1,
|
|
||||||
"CleanupConfigThresholdDays": -1
|
|
||||||
},
|
|
||||||
"ProductSettings": {},
|
|
||||||
"PluginSettings": {
|
|
||||||
"Enable": true,
|
|
||||||
"EnableUploads": false,
|
|
||||||
"AllowInsecureDownloadURL": false,
|
|
||||||
"EnableHealthCheck": true,
|
|
||||||
"Directory": "./plugins",
|
|
||||||
"ClientDirectory": "./client/plugins",
|
|
||||||
"Plugins": {
|
|
||||||
"playbooks": {
|
|
||||||
"BotUserID": "casekka8kirsu8szwg1fuzdg4c"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"PluginStates": {
|
|
||||||
"com.mattermost.apps": {
|
|
||||||
"Enable": true
|
|
||||||
},
|
|
||||||
"com.mattermost.calls": {
|
|
||||||
"Enable": true
|
|
||||||
},
|
|
||||||
"com.mattermost.nps": {
|
|
||||||
"Enable": true
|
|
||||||
},
|
|
||||||
"focalboard": {
|
|
||||||
"Enable": true
|
|
||||||
},
|
|
||||||
"playbooks": {
|
|
||||||
"Enable": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"EnableMarketplace": true,
|
|
||||||
"EnableRemoteMarketplace": true,
|
|
||||||
"AutomaticPrepackagedPlugins": true,
|
|
||||||
"RequirePluginSignature": false,
|
|
||||||
"MarketplaceURL": "https://api.integrations.mattermost.com",
|
|
||||||
"SignaturePublicKeyFiles": [],
|
|
||||||
"ChimeraOAuthProxyURL": ""
|
|
||||||
},
|
|
||||||
"DisplaySettings": {
|
|
||||||
"CustomURLSchemes": [],
|
|
||||||
"MaxMarkdownNodes": 0
|
|
||||||
},
|
|
||||||
"GuestAccountsSettings": {
|
|
||||||
"Enable": false,
|
|
||||||
"HideTags": false,
|
|
||||||
"AllowEmailAccounts": true,
|
|
||||||
"EnforceMultifactorAuthentication": false,
|
|
||||||
"RestrictCreationToDomains": ""
|
|
||||||
},
|
|
||||||
"ImageProxySettings": {
|
|
||||||
"Enable": false,
|
|
||||||
"ImageProxyType": "local",
|
|
||||||
"RemoteImageProxyURL": "",
|
|
||||||
"RemoteImageProxyOptions": ""
|
|
||||||
},
|
|
||||||
"CloudSettings": {
|
|
||||||
"CWSURL": "https://customers.mattermost.com",
|
|
||||||
"CWSAPIURL": "https://portal.internal.prod.cloud.mattermost.com",
|
|
||||||
"CWSMock": false,
|
|
||||||
"Disable": false
|
|
||||||
},
|
|
||||||
"ImportSettings": {
|
|
||||||
"Directory": "./import",
|
|
||||||
"RetentionDays": 30
|
|
||||||
},
|
|
||||||
"ExportSettings": {
|
|
||||||
"Directory": "./export",
|
|
||||||
"RetentionDays": 30
|
|
||||||
},
|
|
||||||
"WranglerSettings": {
|
|
||||||
"PermittedWranglerRoles": [],
|
|
||||||
"AllowedEmailDomain": [],
|
|
||||||
"MoveThreadMaxCount": 100,
|
|
||||||
"MoveThreadToAnotherTeamEnable": false,
|
|
||||||
"MoveThreadFromPrivateChannelEnable": false,
|
|
||||||
"MoveThreadFromDirectMessageChannelEnable": false,
|
|
||||||
"MoveThreadFromGroupMessageChannelEnable": false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
File diff suppressed because one or more lines are too long
28
conf/traefik-esh/certs/acme.json
Normal file
28
conf/traefik-esh/certs/acme.json
Normal file
File diff suppressed because one or more lines are too long
@@ -40,22 +40,14 @@ entryPoints:
|
|||||||
# Configure your CertificateResolver here...
|
# Configure your CertificateResolver here...
|
||||||
# ---
|
# ---
|
||||||
|
|
||||||
#certificatesResolvers:
|
|
||||||
# pfi:
|
|
||||||
# acme:
|
|
||||||
# email: vh@phasefinal.com
|
|
||||||
# storage: /etc/traefik/certs/acme.json
|
|
||||||
# caServer: "https://acme-v02.api.letsencrypt.org/directory"
|
|
||||||
# dnsChallenge:
|
|
||||||
# provider: route53
|
|
||||||
|
|
||||||
certificatesResolvers:
|
certificatesResolvers:
|
||||||
anaprod:
|
pfi:
|
||||||
acme:
|
acme:
|
||||||
storage: acme.json
|
email: vh@phasefinal.com
|
||||||
email: vh@phasefinal.com
|
storage: /etc/traefik/certs/acme.json
|
||||||
httpChallenge:
|
caServer: "https://acme-v02.api.letsencrypt.org/directory"
|
||||||
entryPoint: web
|
dnsChallenge:
|
||||||
|
provider: route53
|
||||||
|
|
||||||
# certificatesResolvers:
|
# certificatesResolvers:
|
||||||
# staging:
|
# staging:
|
||||||
Reference in New Issue
Block a user