initial commit

This commit is contained in:
2016-04-27 22:48:27 +02:00
parent 3afa319d25
commit 3f41e06172
10 changed files with 944 additions and 0 deletions

15
.htaccess Normal file
View File

@@ -0,0 +1,15 @@
# Only allow web access to update.php and index.html
<Files *>
Order Deny,Allow
Deny from all
</Files>
<FilesMatch ^$>
Order Allow,Deny
Allow from all
</FilesMatch>
<FilesMatch "^(update\.php|index\.html)$">
Order Allow,Deny
Allow from all
</FilesMatch>