first commit

This commit is contained in:
2024-11-11 18:46:54 +01:00
commit a630d17338
25634 changed files with 4923715 additions and 0 deletions

30
img/cms/.htaccess Normal file
View File

@@ -0,0 +1,30 @@
#~~PSHOWLAZYIMG-MODULE~start~~-allow-webp
# Code automatically added by module pshowlazyimg
<IfModule mod_authz_core.c>
Require all denied
<Files ~ "(?i)^.*\.(webp)$">
Require all granted
</Files>
</IfModule>
#~~PSHOWLAZYIMG-MODULE~end~~-allow-webp
<IfModule mod_php5.c>
php_flag engine off
</IfModule>
# Apache 2.2
<IfModule !mod_authz_core.c>
Order deny,allow
Deny from all
<Files ~ "(?i)^.*\.(jpg|jpeg|gif|png|bmp|tiff|svg|pdf|mov|mpeg|mp4|avi|mpg|wma|flv|webm|ico)$">
Allow from all
</Files>
</IfModule>
# Apache 2.4
<IfModule mod_authz_core.c>
Require all denied
<Files ~ "(?i)^.*\.(jpg|jpeg|gif|png|bmp|tiff|svg|pdf|mov|mpeg|mp4|avi|mpg|wma|flv|webm|ico)$">
Require all granted
</Files>
</IfModule>