This repository has been archived on 2026-05-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
local-transcription/server/php/data/index.php
T

6 lines
130 B
PHP
Raw Normal View History

<?php
// Block direct access to data directory
http_response_code(403);
header('Content-Type: text/plain');
die('Access Denied');