Reorganize PHP internals and static assets

Move shared PHP code into private/, move JavaScript files into js/, and block direct access to private/. Remove unused API key and cache artifacts from the working tree.
This commit is contained in:
www-data
2026-05-26 11:32:36 +02:00
parent 97f23260ed
commit 2f2e8869d6
30 changed files with 48 additions and 48 deletions
+12
View File
@@ -0,0 +1,12 @@
<?php
/*
* Maximale grootte van base64-payloads, in KiB.
*
* 1 KiB = 1024 bytes. De splitter rondt intern waar nodig naar beneden af
* zodat de binaire chunks netjes naar base64 omgezet kunnen worden.
*/
return array (
'racket_zip_max_base64_kb' => 10240,
'package_zip_max_base64_kb' => 2048,
);