Basic design created

This commit is contained in:
2026-02-03 09:33:18 +01:00
parent 3570f442f5
commit e280fcfba8
29 changed files with 1055 additions and 28 deletions

View File

@@ -29,6 +29,17 @@ server {
fastcgi_pass mareike-app:9000; # Containername vom PHP-FPM
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}
# In der Nginx-Konfiguration von mareike.local
location /build/assets/ {
# Erlaubt explizit deine Subdomain
add_header 'Access-Control-Allow-Origin' "$http_origin" always;
add_header 'Access-Control-Allow-Methods' 'GET, OPTIONS' always;
add_header 'Access-Control-Allow-Headers' 'Content-Type, X-Inertia' always;
# Falls du alle Subdomains von mareike.local erlauben willst:
#
}
}