# CryptoPayr — Lineage 2 crypto donation module.
# Deny direct web access to the settings file and library/config internals.
# (PHP still includes them server-side; only HTTP fetches are blocked.)

<FilesMatch "(?i)\.(txt|md)$">
    Require all denied
</FilesMatch>

<Files "config.php">
    Require all denied
</Files>

# Apache 2.2 fallback for the rules above.
<IfModule !mod_authz_core.c>
    <FilesMatch "(?i)\.(txt|md)$">
        Order allow,deny
        Deny from all
    </FilesMatch>
    <Files "config.php">
        Order allow,deny
        Deny from all
    </Files>
</IfModule>
