Fixes #3263 - apple-touch-icon.png 404 Not Found
This commit is contained in:
parent
f305b70c95
commit
0655b370ed
4 changed files with 4 additions and 2 deletions
|
@ -27,6 +27,7 @@
|
||||||
|
|
||||||
ProxyPass /assets !
|
ProxyPass /assets !
|
||||||
ProxyPass /favicon.ico !
|
ProxyPass /favicon.ico !
|
||||||
|
ProxyPass /apple-touch-icon.png !
|
||||||
ProxyPass /robots.txt !
|
ProxyPass /robots.txt !
|
||||||
ProxyPass /ws ws://127.0.0.1:6042/
|
ProxyPass /ws ws://127.0.0.1:6042/
|
||||||
ProxyPass / http://127.0.0.1:3000/
|
ProxyPass / http://127.0.0.1:3000/
|
||||||
|
|
|
@ -50,6 +50,7 @@
|
||||||
|
|
||||||
ProxyPass /assets !
|
ProxyPass /assets !
|
||||||
ProxyPass /favicon.ico !
|
ProxyPass /favicon.ico !
|
||||||
|
ProxyPass /apple-touch-icon.png !
|
||||||
ProxyPass /robots.txt !
|
ProxyPass /robots.txt !
|
||||||
ProxyPass /ws ws://127.0.0.1:6042/
|
ProxyPass /ws ws://127.0.0.1:6042/
|
||||||
ProxyPass / http://127.0.0.1:3000/
|
ProxyPass / http://127.0.0.1:3000/
|
||||||
|
|
|
@ -26,7 +26,7 @@ server {
|
||||||
|
|
||||||
client_max_body_size 50M;
|
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;
|
expires max;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -82,7 +82,7 @@ server {
|
||||||
|
|
||||||
client_max_body_size 50M;
|
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;
|
expires max;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue