Fixes #3263 - apple-touch-icon.png 404 Not Found

This commit is contained in:
devNan0 2020-10-30 21:52:32 +01:00 committed by Mantas
parent f305b70c95
commit 0655b370ed
4 changed files with 4 additions and 2 deletions

View file

@ -27,6 +27,7 @@
ProxyPass /assets !
ProxyPass /favicon.ico !
ProxyPass /apple-touch-icon.png !
ProxyPass /robots.txt !
ProxyPass /ws ws://127.0.0.1:6042/
ProxyPass / http://127.0.0.1:3000/

View file

@ -50,6 +50,7 @@
ProxyPass /assets !
ProxyPass /favicon.ico !
ProxyPass /apple-touch-icon.png !
ProxyPass /robots.txt !
ProxyPass /ws ws://127.0.0.1:6042/
ProxyPass / http://127.0.0.1:3000/

View file

@ -26,7 +26,7 @@ server {
client_max_body_size 50M;
location ~ ^/(assets/|robots.txt|humans.txt|favicon.ico) {
location ~ ^/(assets/|robots.txt|humans.txt|favicon.ico|apple-touch-icon.png) {
expires max;
}

View file

@ -82,7 +82,7 @@ server {
client_max_body_size 50M;
location ~ ^/(assets/|robots.txt|humans.txt|favicon.ico) {
location ~ ^/(assets/|robots.txt|humans.txt|favicon.ico|apple-touch-icon.png) {
expires max;
}