mirror of
https://github.com/torrentpier/torrentpier.git
synced 2025-01-07 11:39:52 -08:00
6e7595b686
Добавляем некоторые используемые расширения в .gitignore + дополнительные правила для сервера (запрет на доступ к папке .git извне).
18 lines
453 B
ApacheConf
18 lines
453 B
ApacheConf
## set default server charset
|
|
AddDefaultCharset UTF-8
|
|
|
|
## folder listing access control
|
|
Options All -Indexes
|
|
|
|
## sitemap and atom rewrite
|
|
RewriteEngine On
|
|
RewriteRule ^sitemap.xml$ internal_data/sitemap/sitemap.xml [L]
|
|
RewriteRule ^/internal_data/atom/(.*) /atom$1 [L]
|
|
|
|
## deny access to git folder
|
|
RedirectMatch 404 /\\.git(/|$)
|
|
|
|
## deny access to system files
|
|
<FilesMatch "\.(.*sql|tpl|db|inc|log|md)|(config|common).php$">
|
|
deny from all
|
|
</FilesMatch> |