This commit is contained in:
33333-33333 2026-06-04 02:03:59 +09:00
commit 71009c551f
11 changed files with 2771 additions and 204 deletions

1
_data/.htaccess Normal file
View file

@ -0,0 +1 @@
Require all denied

2
_data/README.txt Normal file
View file

@ -0,0 +1,2 @@
SQLite database files are created here on first API access.
Do not delete .htaccess or web.config. They block direct web access to this directory.

11
_data/web.config Normal file
View file

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<security>
<authorization>
<remove users="*" roles="" verbs="" />
<add accessType="Deny" users="*" />
</authorization>
</security>
</system.webServer>
</configuration>