fix: various fixes to sentry-reported errors and more

This commit is contained in:
Hampus Kraft
2026-02-18 15:38:51 +00:00
parent 302c0d2a0c
commit 0517a966a3
357 changed files with 25420 additions and 16281 deletions

View File

@@ -37,20 +37,15 @@
},
"gateway": {
"port": 49107,
"rpc_tcp_port": 49108,
"api_host": "http://localhost:49319/api",
"admin_reload_secret": "",
"media_proxy_endpoint": "http://localhost:49319/media",
"logger_level": "debug"
},
"queue": {
"secret": ""
"nats": {
"core_url": "nats://127.0.0.1:4222",
"jetstream_url": "nats://127.0.0.1:4223"
}
},
"gateway": {
"rpc_endpoint": "http://localhost:49107",
"rpc_secret": ""
},
"auth": {
"sudo_mode_secret": "",
"connection_initiation_secret": "",

View File

@@ -16,7 +16,7 @@
"s3": {
"access_key_id": "YOUR_S3_ACCESS_KEY",
"secret_access_key": "YOUR_S3_SECRET_KEY",
"endpoint": "http://127.0.0.1:3900"
"endpoint": "http://127.0.0.1:8080/s3"
},
"services": {
"server": {
@@ -36,19 +36,15 @@
},
"gateway": {
"port": 8082,
"rpc_tcp_port": 8083,
"api_host": "http://127.0.0.1:8080/api",
"admin_reload_secret": "GENERATE_A_64_CHAR_HEX_SECRET",
"media_proxy_endpoint": "http://127.0.0.1:8080/media"
},
"queue": {
"secret": "GENERATE_A_64_CHAR_HEX_SECRET"
"nats": {
"core_url": "nats://nats:4222",
"jetstream_url": "nats://nats:4222",
"auth_token": "GENERATE_A_NATS_AUTH_TOKEN"
}
},
"gateway": {
"rpc_endpoint": "http://127.0.0.1:8082",
"rpc_secret": "GENERATE_A_64_CHAR_HEX_SECRET"
},
"auth": {
"sudo_mode_secret": "GENERATE_A_64_CHAR_HEX_SECRET",
"connection_initiation_secret": "GENERATE_A_64_CHAR_HEX_SECRET",

View File

@@ -23,18 +23,10 @@
"oauth_client_secret": "test-oauth-client-secret"
},
"gateway": {
"rpc_tcp_port": 8089,
"api_host": "http://localhost:8088/api",
"admin_reload_secret": "test-gateway-admin-reload-secret-32-chars",
"media_proxy_endpoint": "http://localhost:8088/media"
},
"queue": {
"secret": "test-queue-secret-key-minimum-32-chars"
}
},
"gateway": {
"rpc_secret": "test-gateway-rpc-secret-minimum-32-chars"
},
"auth": {
"sudo_mode_secret": "test-sudo-mode-secret-minimum-32-chars",
"connection_initiation_secret": "test-connection-initiation-secret-32ch",