mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-29 03:49:28 +08:00
f7aab0e042
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
45 lines
1021 B
YAML
45 lines
1021 B
YAML
server_name: "localhost"
|
|
pid_file: /data/homeserver.pid
|
|
public_baseurl: "{{PUBLIC_BASEURL}}"
|
|
listeners:
|
|
- port: 8008
|
|
tls: false
|
|
bind_addresses: ["::"]
|
|
type: http
|
|
x_forwarded: true
|
|
|
|
resources:
|
|
- names: [client]
|
|
compress: false
|
|
|
|
database:
|
|
name: "sqlite3"
|
|
args:
|
|
database: ":memory:"
|
|
|
|
log_config: "/data/log.config"
|
|
|
|
media_store_path: "/data/media_store"
|
|
uploads_path: "/data/uploads"
|
|
enable_registration: true
|
|
registrations_require_3pid:
|
|
- email
|
|
registration_shared_secret: "{{REGISTRATION_SECRET}}"
|
|
report_stats: false
|
|
macaroon_secret_key: "{{MACAROON_SECRET_KEY}}"
|
|
form_secret: "{{FORM_SECRET}}"
|
|
signing_key_path: "/data/localhost.signing.key"
|
|
|
|
trusted_key_servers:
|
|
- server_name: "matrix.org"
|
|
suppress_key_server_warning: true
|
|
|
|
ui_auth:
|
|
session_timeout: "300s"
|
|
|
|
email:
|
|
smtp_host: "%SMTP_HOST%"
|
|
smtp_port: %SMTP_PORT%
|
|
notif_from: "Your Friendly %(app)s homeserver <noreply@example.com>"
|
|
app_name: my_branded_matrix_server
|