- Updated .env.example with legal operator details for compliance. - Refactored Impressum, Privacy, and Terms pages to utilize a new LegalDocument component for improved structure and maintainability. - Enhanced localization files to include legal content in both German and English, ensuring accurate representation of legal information. - Improved i18n handling to support locale detection from Accept-Language headers.
22 lines
688 B
PHP
22 lines
688 B
PHP
<?php
|
|
/**
|
|
* Public site config for Plesk (nexumi.de).
|
|
* No secrets here — only URLs and the Discord application client ID (public).
|
|
*/
|
|
return [
|
|
// Discord application client ID (used for bot invite link)
|
|
'bot_client_id' => '1529428118010462278',
|
|
|
|
// Dashboard (Traefik / WebUI)
|
|
'dashboard_url' => 'https://dashboard.nexumi.de',
|
|
|
|
// Optional support invite
|
|
'support_url' => 'https://discord.gg/RZ9JcQrPDz',
|
|
|
|
// Live stats from the WebUI public API (falls back to placeholders on failure)
|
|
'stats_api_url' => 'https://dashboard.nexumi.de/api/public/stats',
|
|
|
|
// Bot status page (dashboard)
|
|
'status_url' => 'https://dashboard.nexumi.de/status',
|
|
];
|