nevermind, apparently that's not necessary
All checks were successful
Docker Build / Build and Push Images (push) Successful in 19s

This commit is contained in:
Seaswimmer 2024-08-08 11:43:53 -04:00
parent eaf3e25242
commit b08a7a9076
Signed by: cswimr
GPG key ID: 3813315477F26F82
2 changed files with 0 additions and 14 deletions

View file

@ -77,6 +77,4 @@ ENV COMPOSER_ALLOW_SUPERUSER=1
RUN composer update -d /var/www/html
COPY short-url.conf /etc/apache2/conf-enabled/short-url.conf
RUN mkdir /var/log/mediawiki && chown www-data:www-data /var/log/mediawiki

View file

@ -1,12 +0,0 @@
RewriteEngine On
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-f
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-d
RewriteRule ^(.*)$ %{DOCUMENT_ROOT}/index.php [L]
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-f
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-d
RewriteRule ^/?images/thumb/[0-9a-f]/[0-9a-f][0-9a-f]/([^/]+)/([0-9]+)px-.*$ %{DOCUMENT_ROOT}/thumb.php?f=$1&width=$2 [L,QSA,B]
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-f
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-d
RewriteRule ^/?images/thumb/archive/[0-9a-f]/[0-9a-f][0-9a-f]/([^/]+)/([0-9]+)px-.*$ %{DOCUMENT_ROOT}/thumb.php?f=$1&width=$2&archived=1 [L,QSA,B]