Runtime-Daten aus Git entfernen, WebP-Konvertierung ergänzen, Installation und Updates dokumentieren sowie den Repository-Link im Footer hinzufügen.
22 lines
633 B
PHP
22 lines
633 B
PHP
<?php
|
|
// config.php
|
|
declare(strict_types=1);
|
|
|
|
date_default_timezone_set('Europe/Berlin');
|
|
|
|
// === Grundkonfiguration ===
|
|
const SITE_NAME = 'Walschleber KulTour';
|
|
const BASE_URL = 'https://walschleber-kultour.com'; // <-- anpassen, falls abweichend
|
|
const CONTACT_EMAIL = 'walschleber.kultour@gmail.com';
|
|
|
|
// Statisches Admin-Passwort (bitte ändern!)
|
|
const ADMIN_PASSWORD_PLAIN = 'YH&Vk2TOn%%5R196bMgU*EWpdk2Bc08Z';
|
|
|
|
// Pfade
|
|
const DATA_FILE = __DIR__ . '/data/talks.json';
|
|
const UPLOAD_DIR = __DIR__ . '/uploads';
|
|
const WEBP_QUALITY = 85;
|
|
|
|
// SEO Defaults
|
|
const DEFAULT_OG_IMAGE = '/assets/logo.png'; // optional, falls vorhanden
|