Fix Neon Vortex button input and add Jellyfin WAL mode
Some checks failed
Build and Push to Harbor / build-and-push (push) Has been cancelled

- Comment out CORS headers in nginx.conf to fix button input blocking
- Add WAL enable job for Jellyfin to resolve database locking issues
- Include comprehensive troubleshooting documentation

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Neon Vortex
2025-11-22 17:51:34 -05:00
parent 5b52eb9999
commit ce8d9029c1
4 changed files with 737 additions and 2 deletions

View File

@@ -25,8 +25,11 @@ server {
add_header X-XSS-Protection "1; mode=block" always;
# CORS headers for web workers and WASM
add_header Cross-Origin-Embedder-Policy "require-corp" always;
add_header Cross-Origin-Opener-Policy "same-origin" always;
# ONLY NEEDED IF GODOT EXPORT USES THREADS MODE
# These headers can block input if export is "Regular" (non-threaded)
# Commenting out to fix button input issues
# add_header Cross-Origin-Embedder-Policy "require-corp" always;
# add_header Cross-Origin-Opener-Policy "same-origin" always;
location / {
try_files $uri $uri/ "/Neon Vortex.html";