# Kelas Visual — Apache config untuk hosting cPanel

# Jangan tampilkan isi direktori
Options -Indexes

# Halaman default
DirectoryIndex index.html

# Paksa UTF-8
AddDefaultCharset UTF-8

<IfModule mod_deflate.c>
  AddOutputFilterByType DEFLATE text/html text/css application/javascript application/json
</IfModule>

<FilesMatch "config\.php$">
  <IfModule mod_authz_core.c>
    Require all denied
  </IfModule>
  <IfModule !mod_authz_core.c>
    Order deny,allow
    Deny from all
  </IfModule>
</FilesMatch>
