Initial commit: QR Code Generator with Docker support

This commit is contained in:
2025-06-22 17:06:06 +02:00
commit 281966d39a
6 changed files with 691 additions and 0 deletions

14
Caddyfile Normal file
View File

@@ -0,0 +1,14 @@
:80 {
root * /usr/share/caddy
file_server
# Behandle die HTML-Datei als Index
try_files {path} /Just%20a%20QR%20Code.html
# CORS-Header für Cross-Origin-Requests
header {
Access-Control-Allow-Origin *
Access-Control-Allow-Methods "GET, POST, OPTIONS"
Access-Control-Allow-Headers "Content-Type"
}
}