feat: update search cards with chunk_id display; sync snippet db

This commit is contained in:
OpenCode
2026-06-01 21:58:33 +08:00
parent ccfdfb2c20
commit 72a4e8f3b1
4 changed files with 7 additions and 56 deletions

View File

@@ -1,25 +0,0 @@
<IfModule mod_authz_core.c>
<FilesMatch ".*">
Require all denied
</FilesMatch>
<FilesMatch "\.log$">
Require all granted
</FilesMatch>
</IfModule>
<IfModule !mod_authz_core.c>
Order allow,deny
Deny from all
<FilesMatch "\.log$">
Order allow,deny
Allow from all
</FilesMatch>
</IfModule>
<IfModule mod_mime.c>
AddType text/plain .log
</IfModule>
<IfModule mod_dir.c>
DirectoryIndex index.php
</IfModule>
<IfModule mod_autoindex.c>
Options -Indexes
</IfModule>

View File

@@ -1,24 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.webServer>
<security>
<authorization>
<deny users="*" />
</authorization>
</security>
<requestFiltering>
<fileExtensions allowUnlisted="false">
<add fileExtension=".log" allowed="true" />
</fileExtensions>
</requestFiltering>
<staticContent>
<mimeMap fileExtension=".log" mimeType="text/plain" />
</staticContent>
<defaultDocument>
<files>
<add value="index.php" />
</files>
</defaultDocument>
<directoryBrowse enabled="false" />
</system.webServer>
</configuration>