17 lines
454 B
PHP
17 lines
454 B
PHP
<?php
|
|
/**
|
|
* CORS-Proxy Konfiguration
|
|
* Diese Datei enthält die Backend-Credentials
|
|
* WICHTIG: Diese Datei NICHT in Git committen!
|
|
* Fügen Sie cors-config.php zur .gitignore hinzu
|
|
*/
|
|
|
|
// Backend-Credentials
|
|
$username = 'beogruppe';
|
|
$password = 'ArktUhr';
|
|
|
|
// Optional: Weitere Konfiguration
|
|
// $backendUrl = 'https://sternwarte-welzheim.de/intern/sofue/php/sofueDB.php';
|
|
// $allowedOrigins = ['http://localhost:5173', 'https://ihre-domain.de'];
|
|
?>
|