Compare commits
3 Commits
ana-docker
...
nh3-docker
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d1aa797a0d | ||
|
|
a1367f97d4 | ||
|
|
2c453bc917 |
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
|
||||||
20
compose/dockge/compose.yaml
Normal file → Executable file
20
compose/dockge/compose.yaml
Normal file → Executable file
@@ -9,18 +9,24 @@ services:
|
|||||||
- /var/run/docker.sock:/var/run/docker.sock
|
- /var/run/docker.sock:/var/run/docker.sock
|
||||||
- dockge_data:/app/data
|
- dockge_data:/app/data
|
||||||
- /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
|
||||||
|
- /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: null
|
||||||
networks:
|
networks:
|
||||||
|
|||||||
@@ -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
|
|
||||||
@@ -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
@@ -1,95 +0,0 @@
|
|||||||
global:
|
|
||||||
checkNewVersion: true
|
|
||||||
sendAnonymousUsage: false # true by default
|
|
||||||
|
|
||||||
# (Optional) Log information
|
|
||||||
# ---
|
|
||||||
# log:
|
|
||||||
# level: ERROR # DEBUG, INFO, WARNING, ERROR, CRITICAL
|
|
||||||
# format: common # common, json, logfmt
|
|
||||||
# filePath: /var/log/traefik/traefik.log
|
|
||||||
|
|
||||||
# (Optional) Accesslog
|
|
||||||
# ---
|
|
||||||
# accesslog:
|
|
||||||
# format: common # common, json, logfmt
|
|
||||||
# filePath: /var/log/traefik/access.log
|
|
||||||
|
|
||||||
# (Optional) Enable API and Dashboard
|
|
||||||
# ---
|
|
||||||
api:
|
|
||||||
dashboard: true # true by default
|
|
||||||
insecure: true # Don't do this in production!
|
|
||||||
|
|
||||||
# Entry Points configuration
|
|
||||||
# ---
|
|
||||||
entryPoints:
|
|
||||||
web:
|
|
||||||
address: :80
|
|
||||||
# (Optional) Redirect to HTTPS
|
|
||||||
# ---
|
|
||||||
# http:
|
|
||||||
# redirections:
|
|
||||||
# entryPoint:
|
|
||||||
# to: websecure
|
|
||||||
# scheme: https
|
|
||||||
|
|
||||||
websecure:
|
|
||||||
address: :443
|
|
||||||
|
|
||||||
# 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:
|
|
||||||
anaprod:
|
|
||||||
acme:
|
|
||||||
storage: acme.json
|
|
||||||
email: vh@phasefinal.com
|
|
||||||
httpChallenge:
|
|
||||||
entryPoint: web
|
|
||||||
|
|
||||||
# certificatesResolvers:
|
|
||||||
# staging:
|
|
||||||
# acme:
|
|
||||||
# email: your-email@example.com
|
|
||||||
# storage: /etc/traefik/certs/acme.json
|
|
||||||
# caServer: "https://acme-staging-v02.api.letsencrypt.org/directory"
|
|
||||||
# httpChallenge:
|
|
||||||
# entryPoint: web
|
|
||||||
#
|
|
||||||
# production:
|
|
||||||
# acme:
|
|
||||||
# email: your-email@example.com
|
|
||||||
# storage: /etc/traefik/certs/acme.json
|
|
||||||
# caServer: "https://acme-v02.api.letsencrypt.org/directory"
|
|
||||||
# httpChallenge:
|
|
||||||
# entryPoint: web
|
|
||||||
|
|
||||||
# (Optional) Overwrite Default Certificates
|
|
||||||
# tls:
|
|
||||||
# stores:
|
|
||||||
# default:
|
|
||||||
# defaultCertificate:
|
|
||||||
# certFile: /etc/traefik/certs/cert.pem
|
|
||||||
# keyFile: /etc/traefik/certs/cert-key.pem
|
|
||||||
# (Optional) Disable TLS version 1.0 and 1.1
|
|
||||||
# options:
|
|
||||||
# default:
|
|
||||||
# minVersion: VersionTLS12
|
|
||||||
|
|
||||||
providers:
|
|
||||||
docker:
|
|
||||||
exposedByDefault: false # Default is true
|
|
||||||
file:
|
|
||||||
# watch for dynamic configuration changes
|
|
||||||
directory: /etc/traefik
|
|
||||||
watch: true
|
|
||||||
Reference in New Issue
Block a user