1
0
mirror of https://github.com/insomniafi/extra synced 2025-10-17 01:39:40 +00:00

Compare commits

...

2 Commits

Author SHA1 Message Date
Christer Warén
e2ea113e05 Deny access to directories 2025-10-09 15:40:17 +03:00
Christer Warén
06ce9273d4 Update Warén Group logo address 2025-10-09 15:40:01 +03:00
2 changed files with 11 additions and 1 deletions

View File

@@ -11,3 +11,13 @@ RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php [NC,L,QSA] RewriteRule ^(.*)$ index.php [NC,L,QSA]
</IfModule> </IfModule>
<IfModule mod_autoindex.c>
IndexIgnore */*
Options -Indexes
</IfModule>
<IfModule mod_alias.c>
RedirectMatch 403 ^/.git(/.*)?$
RedirectMatch 403 ^/datastore(/.*)?$
</IfModule>

View File

@@ -185,7 +185,7 @@ if(isset($_GET['date']) && $_GET['date'] != ''){
} }
.wg-logo { .wg-logo {
background-image: url(https://cdn.waren.io/logos/warengroup/logo-light.svg); background-image: url(https://cdn.waren.io/files/warengroup/assets/images/logo-light.svg);
background-repeat: no-repeat; background-repeat: no-repeat;
background-position: center; background-position: center;
background-size: contain; background-size: contain;