fix logo path for apple webapp

This commit is contained in:
2024-11-21 14:14:20 +01:00
parent 9671e472cc
commit e971161d65
2 changed files with 2 additions and 1 deletions

View File

@ -5,7 +5,7 @@
<meta http-equiv='X-UA-Compatible' content='IE=edge'> <meta http-equiv='X-UA-Compatible' content='IE=edge'>
<meta name="mobile-web-app-capable" content="yes"> <meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<link rel="apple-touch-icon" href="/static/logo.png"> <link rel="apple-touch-icon" href="/static/img/logo.png">
<link rel="manifest" href="/static/manifest.json"> <link rel="manifest" href="/static/manifest.json">
<link rel="icon" href="/static/img/icon_dark.ico" type="image/x-icon"> <link rel="icon" href="/static/img/icon_dark.ico" type="image/x-icon">
<link rel="icon" href="/static/img/icon_light.ico" type="image/x-icon" media="(prefers-color-scheme: light)"> <link rel="icon" href="/static/img/icon_light.ico" type="image/x-icon" media="(prefers-color-scheme: light)">

1
docker-compose/requirements/nginx/Dockerfile Normal file → Executable file
View File

@ -9,6 +9,7 @@ RUN openssl req -x509 -nodes -out /etc/nginx/ssl/inception.crt -keyout /etc/ngin
COPY nginx.conf /etc/nginx/nginx.conf COPY nginx.conf /etc/nginx/nginx.conf
COPY static /var/www/static COPY static /var/www/static
RUN chmod -R 777 /var/www/static
STOPSIGNAL SIGKILL STOPSIGNAL SIGKILL