-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.env.dist
More file actions
74 lines (60 loc) · 2 KB
/
Copy path.env.dist
File metadata and controls
74 lines (60 loc) · 2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# API_LISTEN_HOST=0.0.0.0
# API_LISTEN_PORT=80
# IP address to trust for proxy header (X-FORWARDED-FOR, X-FORWARDED-PROTO)
# API_PROXY_IP:-127.0.0.1
COMPOSE_PROJECT_NAME=misp-workbench
POSTGRES_HOSTNAME=postgres
POSTGRES_PORT=5432
POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres
POSTGRES_DB=misp
REDIS_HOSTNAME=redis
REDIS_PORT=6379
REDIS_CELERY_DB=0
REDIS_CACHE_DB=5
CELERY_BROKER_URL=redis://redis:6379/0
CELERY_RESULT_BACKEND=redis://redis:6379/0
OPENSEARCH_HOSTNAME=opensearch
OPENSEARCH_PORT=9200
OPENSEARCH_INITIAL_ADMIN_PASSWORD=
OPENSEARCH_DASHBOARDS_PASSWORD=
OPENSEARCH_USERNAME=
OPENSEARCH_PASSWORD=
# Leave OAUTH2_SECRET_KEY / OAUTH2_REFRESH_SECRET_KEY unset to have them generated automatically.
# Set both if you need fixed credentials (e.g. existing tokens must remain valid).
OAUTH2_SECRET_KEY=
OAUTH2_REFRESH_SECRET_KEY=
# OAUTH2_CREDS_FILE=/var/lib/misp-workbench/oauth-creds/oauth2.json
OAUTH2_ALGORITHM=HS256
OAUTH2_ACCESS_TOKEN_EXPIRE_MINUTES=300
OAUTH2_REFRESH_TOKEN_EXPIRE_DAYS=7
MAIL_USERNAME=mail-user
MAIL_PASSWORD=mail-pwd
MAIL_PORT=587
MAIL_SERVER=smtp
MAIL_FROM=info@misp-workbench.local
MODULES_HOST=modules
MODULES_PORT=6666
MCP_AUTH_ENABLED=true
STORAGE_ENGINE=s3
S3_ENDPOINT=garage:3900
# Leave S3_ACCESS_KEY / S3_SECRET_KEY unset to have Garage generate them automatically.
# Set both if you need fixed credentials (e.g. migration from an existing setup).
S3_ACCESS_KEY=
S3_SECRET_KEY=
S3_BUCKET=attachments
S3_SECURE=true
GARAGE_ADMIN_URL=http://garage:3903
GARAGE_ADMIN_TOKEN=
GARAGE_METRICS_TOKEN=
FLOWER_BASIC_AUTH=flower:flower
# Needed to change if Flower run on another host
# FLOWER_URL=http://flower:5555
# Needed to change if the database is not in the standard path
# FLOWER_DB=./flower
LOG_LEVEL=WARNING
# Comma-separated list of extra allowed CORS origins (e.g. https://app.misp-workbench.com)
CORS_ORIGINS=
# Root directory containing the `mwctipy` SDK, injected on the notebook kernel's
# sys.path at startup. Must point at the `api/` directory of the deployment.
LAB_CODE_ROOT=/code