Sanitized mirror from private repository - 2026-04-20 01:32:01 UTC
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"default_server_config": {
|
||||
"m.homeserver": {
|
||||
"base_url": "https://mx.vish.gg",
|
||||
"server_name": "mx.vish.gg"
|
||||
},
|
||||
"m.identity_server": {
|
||||
"base_url": "https://vector.im"
|
||||
}
|
||||
},
|
||||
"disable_custom_urls": false,
|
||||
"disable_guests": true,
|
||||
"disable_login_language_selector": false,
|
||||
"disable_3pid_login": false,
|
||||
"brand": "Element",
|
||||
"integrations_ui_url": "https://scalar.vector.im/",
|
||||
"integrations_rest_url": "https://scalar.vector.im/api",
|
||||
"integrations_widgets_urls": [
|
||||
"https://scalar.vector.im/_matrix/integrations/v1",
|
||||
"https://scalar.vector.im/api",
|
||||
"https://scalar-staging.vector.im/_matrix/integrations/v1",
|
||||
"https://scalar-staging.vector.im/api",
|
||||
"https://scalar-staging.riot.im/scalar/api"
|
||||
],
|
||||
"default_country_code": "US",
|
||||
"show_labs_settings": true,
|
||||
"features": {},
|
||||
"default_federate": true,
|
||||
"default_theme": "dark",
|
||||
"room_directory": {
|
||||
"servers": ["mx.vish.gg", "matrix.org"]
|
||||
},
|
||||
"enable_presence_by_hs_url": {
|
||||
"https://mx.vish.gg": true
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,69 @@
|
||||
# Matrix Synapse Homeserver Configuration Template
|
||||
# Copy to /opt/synapse-mx/homeserver.yaml and customize
|
||||
#
|
||||
# This is the PRIMARY federated server (mx.vish.gg)
|
||||
# For legacy server config, see homeserver-legacy.yaml.template
|
||||
|
||||
server_name: "mx.vish.gg"
|
||||
pid_file: /opt/synapse-mx/homeserver.pid
|
||||
public_baseurl: https://mx.vish.gg/
|
||||
|
||||
listeners:
|
||||
- port: 8018
|
||||
tls: false
|
||||
type: http
|
||||
x_forwarded: true
|
||||
resources:
|
||||
- names: [client, federation]
|
||||
compress: false
|
||||
|
||||
database:
|
||||
name: psycopg2
|
||||
args:
|
||||
user: synapse_mx
|
||||
password: "REDACTED_PASSWORD"
|
||||
database: synapse_mx
|
||||
host: localhost
|
||||
cp_min: 5
|
||||
cp_max: 10
|
||||
|
||||
log_config: "/opt/synapse-mx/mx.vish.gg.log.config"
|
||||
media_store_path: /opt/synapse-mx/media_store
|
||||
signing_key_path: "/opt/synapse-mx/mx.vish.gg.signing.key"
|
||||
|
||||
trusted_key_servers:
|
||||
- server_name: "matrix.org"
|
||||
|
||||
# Generate secrets with: python3 -c "import secrets; print(secrets.token_urlsafe(32))"
|
||||
registration_shared_secret: "<GENERATE_SECRET>"
|
||||
macaroon_secret_key: "<GENERATE_SECRET>"
|
||||
form_secret: "<GENERATE_SECRET>"
|
||||
|
||||
enable_registration: true
|
||||
enable_registration_without_verification: true
|
||||
|
||||
max_upload_size: 100M
|
||||
url_preview_enabled: true
|
||||
url_preview_ip_range_blacklist:
|
||||
- '127.0.0.0/8'
|
||||
- '10.0.0.0/8'
|
||||
- '172.16.0.0/12'
|
||||
- '192.168.0.0/16'
|
||||
- '100.64.0.0/10'
|
||||
- '169.254.0.0/16'
|
||||
- '::1/128'
|
||||
- 'fe80::/64'
|
||||
- 'fc00::/7'
|
||||
|
||||
report_stats: false
|
||||
suppress_key_server_warning: true
|
||||
|
||||
# TURN server for voice/video calls
|
||||
turn_uris:
|
||||
- "turn:mx.vish.gg:3479?transport=udp"
|
||||
- "turn:mx.vish.gg:3479?transport=tcp"
|
||||
turn_shared_secret: "<TURN_SHARED_SECRET>"
|
||||
turn_user_lifetime: 86400000
|
||||
turn_allow_guests: true
|
||||
|
||||
enable_3pid_changes: true
|
||||
@@ -0,0 +1,33 @@
|
||||
# TURN Server Configuration (coturn)
|
||||
# Copy to /etc/turnserver.conf
|
||||
|
||||
# Ports
|
||||
listening-port=3479
|
||||
tls-listening-port=5350
|
||||
listening-ip=0.0.0.0
|
||||
|
||||
# External IP for NAT traversal
|
||||
# Format: external-ip=<public-ip>/<internal-ip>
|
||||
external-ip=YOUR_WAN_IP/192.168.0.154
|
||||
|
||||
# Authentication
|
||||
fingerprint
|
||||
use-auth-secret
|
||||
static-auth-secret=<TURN_SHARED_SECRET>
|
||||
realm=matrix.thevish.io
|
||||
|
||||
# Quotas
|
||||
total-quota=100
|
||||
bps-capacity=0
|
||||
stale-nonce=600
|
||||
|
||||
# Security
|
||||
no-multicast-peers
|
||||
|
||||
# Media relay ports (must be forwarded through firewall)
|
||||
min-port=49201
|
||||
max-port=49250
|
||||
|
||||
# Logging
|
||||
log-file=/var/log/turnserver.log
|
||||
verbose
|
||||
Reference in New Issue
Block a user