# Apache Web Sunucusu Güvenlik Yapılandırması
Options -Indexes
ServerSignature Off

# UTF-8 Karakter Seti
AddDefaultCharset UTF-8

# Hassas dosyalara doğrudan erişimi engelle
<FilesMatch "\.(sqlite|sqlite3|db|log|env|ini|sh|bak|sql)$">
    <IfModule mod_authz_core.c>
        Require all denied
    </IfModule>
    <IfModule !mod_authz_core.c>
        Order deny,allow
        Deny from all
    </IfModule>
</FilesMatch>

# Includes ve actions dizinlerindeki doğrudan dosya listelemelerini engelle
<IfModule mod_autoindex.c>
    Options -Indexes
</IfModule>
