Production app2.m8chat.au/.htaccess gained Flutter HTML5 routing rules edited live on brisbane01; local repo never received them. Full-tree md5 comparison (45 files) shows this was the only drift. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
16 lines
505 B
ApacheConf
16 lines
505 B
ApacheConf
# Required for SharedArrayBuffer — needed by LiveKit E2EE frame encryption.
|
|
# Without COOP+COEP, the LiveKit E2EE web worker cannot be created.
|
|
<IfModule mod_headers.c>
|
|
Header set Cross-Origin-Opener-Policy "same-origin"
|
|
Header set Cross-Origin-Embedder-Policy "require-corp"
|
|
</IfModule>
|
|
|
|
# Flutter HTML5 routing — all unknown paths serve index.html
|
|
Options -Indexes
|
|
RewriteEngine On
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
|
|
RewriteRule ^(.*)$ /index.html [L,QSA]
|