-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.local.example
More file actions
100 lines (74 loc) · 3.01 KB
/
Copy path.env.local.example
File metadata and controls
100 lines (74 loc) · 3.01 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# Build Arguments
# This major version number of MediaWiki you want to use, e.g. "1.44"
MEDIAWIKI_MAJOR_VERSION=""
# The full version number of MediaWiki you want to use, e.g. "1.44.3"
MEDIAWIKI_VERSION=""
# The branch of MediaWiki you want to use for extensions, e.g. "REL1_44"
MEDIAWIKI_BRANCH=""
# The version of the Citizen skin you want to use, e.g. "3.12.0"
CITIZEN_VERSION=""
# Core Secrets
# The key to access the upgrade page, this is disabled on the default image
# This needs to be a 16 character alphanumeric string
UPGRADE_KEY=""
# The key is used for various security related functions within MediaWiki
# This needs to be a 64 character alphanumeric string
SECRET_KEY=""
# DB Configurations
# The IP address or hostname of your database server - This needs to match MARIADB_NAME
DB_SERVER="local-wiki-mariadb"
# The name of the table in the database used by MediaWiki - This needs to match MARIADB_NAME
DB_NAME="local-mariadb"
# The username used by MediaWiki to connect to the database - This needs to match MARIADB_USER
DB_USER="local-mariadb-user"
# The password used by MediaWiki to connect to the database - This needs to match MARIADB_PASSWORD
DB_PASSWORD="local-mariadb-password"
# SMTP Configurations and Secrets
# The SMTP server host address
SMTP_HOST=""
# The SMTP domain you wish to use for sending emails
SMTP_DOMAIN=""
# The SMTP server port, usually 587 for TLS or 465 for SSL
SMTP_PORT=""
# The SMTP authentication username, usually an email address
SMTP_USERNAME=""
# The password for the SMTP username
SMTP_PASSWORD=""
# The email address to send emergency notifications to
EMERGENCY_EMAIL=""
# The email address to send SMTP emails from for password reset emails
SMTP_SENDER=""
# Cloudflare Turnstile Secrets
# The site key for Cloudflare Turnstile
TURNSTILE_SITE_KEY=""
# The secret key for Cloudflare Turnstile
TURNSTILE_SECRET_KEY=""
# S3 Configurations and Secrets
# The S3 endpoint URL
S3_ENDPOINT="http://minio:9000"
# The S3 access key ID - This needs to match MINIO_USER
S3_ACCESS_KEY_ID="local-minio-user"
# The S3 secret access key - This needs to match MINIO_PASSWORD
S3_SECRET_ACCESS_KEY="local-minio-password"
# The S3 bucket name
S3_BUCKET_NAME=""
# The S3 bucket domain
S3_BUCKET_DOMAIN="minio:9000"
# Miscellaneous Configurations
# The full name of the wiki
SITENAME="Local Wiki"
# The full URL the wiki will be accessible from, including the protocol (e.g. https://localhost:3000)
WG_SERVER="http://localhost:3000"
# Discord Webhook URL
DISCORD_WEBHOOK_URL=""
# Local Configurations
# This needs to match DB_PASSWORD - This needs to match DB_PASSWORD
MARIADB_PASSWORD="local-mariadb-password"
# This needs to match DB_NAME - This needs to match DB_NAME
MARIADB_NAME="local-mariadb"
# This needs to match DB_USER - This needs to match DB_USER
MARIADB_USER="local-mariadb-user"
# This needs to match S3_ACCESS_KEY_ID - This needs to match S3_ACCESS_KEY_ID
MINIO_USER="local-minio-user"
# This needs to match S3_SECRET_ACCESS_KEY - This needs to match S3_SECRET_ACCESS_KEY
MINIO_PASSWORD="local-minio-password"