1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/spip_ynh.git synced 2024-09-03 20:25:59 +02:00

Fix le favico dans la conf de nginx

This commit is contained in:
magikcypress 2017-02-24 00:57:14 +01:00
parent 782db06927
commit 26ec6971ab

View file

@ -10,7 +10,6 @@ location __PATHTOCHANGE__ {
if (!-e $request_filename) if (!-e $request_filename)
{ {
rewrite ^/([^/]*)/robots\.txt$ __PATHTOCHANGE__/spip.php?page=robots.txt last; rewrite ^/([^/]*)/robots\.txt$ __PATHTOCHANGE__/spip.php?page=robots.txt last;
rewrite ^/([^/]*)/favicon\.ico$ __PATHTOCHANGE__/spip.php?page=favicon.ico last;
rewrite ^/([^/]*)/sitemap\.xml$ __PATHTOCHANGE__/spip.php?page=sitemap.xml last; rewrite ^/([^/]*)/sitemap\.xml$ __PATHTOCHANGE__/spip.php?page=sitemap.xml last;
rewrite ^(.+)$ __PATHTOCHANGE__/index.php?q=$1 last; rewrite ^(.+)$ __PATHTOCHANGE__/index.php?q=$1 last;
} }
@ -36,6 +35,7 @@ location __PATHTOCHANGE__ {
# à garder en cache une semaine. Si il y a un proxy sur la # à garder en cache une semaine. Si il y a un proxy sur la
# route, celui-ci est autorisé à faire une copie et à la # route, celui-ci est autorisé à faire une copie et à la
# cacher. # cacher.
rewrite ^/([^/]*)/favicon\.ico$ __PATHTOCHANGE__/spip.php?page=favicon.ico last;
expires 1w; expires 1w;
add_header Cache-Control public; add_header Cache-Control public;
} }