28 lines
820 B
PHP
28 lines
820 B
PHP
<?php
|
||
// multimedia-settings.php – analog zu deinen bestehenden Projekten
|
||
|
||
const MM_ALLOWED_ORIGINS = [
|
||
'https://windesign.at',
|
||
'https://hedgehog.windesign.at',
|
||
'https://api.windesign.at',
|
||
'https://preview.flutlab.io',
|
||
'https://*.flutlab.io',
|
||
'http://localhost:*',
|
||
'http://127.0.0.1:*',
|
||
'https://localhost:*',
|
||
'https://127.0.0.1:*',
|
||
];
|
||
|
||
define('DATABASE_NAME', 'multimediaFlutter');
|
||
define('DATABASE_USER', 'multimediaFlutter');
|
||
define('DATABASE_PASSWORD', 'WeissIchNicht8');
|
||
define('DATABASE_HOST', 'localhost');
|
||
|
||
define('UPLOAD_DIR', __DIR__ . '/multimedia/uploads');
|
||
define('UPLOAD_THUMB_DIR', __DIR__ . '/multimedia/uploads/thumbs');
|
||
define('UPLOAD_BASE_URL', 'https://api.windesign.at/multimedia/uploads');
|
||
|
||
define('MAX_UPLOAD_SIZE', 512 * 1024 * 1024);
|
||
define('MM_DEBUG', true);
|
||
?>
|