Bing Daily theme

https://github.com/Nriver/bing-daily-theme 

Made by Nriver with love and peace : )

 

Tips | 提示

 

Popup message | 弹出提示

There Will be a popup message upon start, you can turn it off in  config.

启动时会显示壁纸的信息,你可以在 config 里面关闭

 

Make it work on mobile phone | 在手机上生效

If the css does not take effect on the phone, you can try to delete the browser's cache.

如果手机上不生效,请尝试删除浏览器缓存。

 

Or, you can disable the cache for /api/notes/download. For example, Nginx could be set like this:

或者,你可以禁用 /api/notes/download 的缓存。示例的Nginx配置如下:

 

location /api/notes/download/ {
   # disable cache
   # 禁用缓存
   add_header Cache-Control "no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0";
   add_header Pragma "no-cache";
   add_header Expires "0";
   
   # normal proxy config
   proxy_pass http://127.0.0.1:8080/api/notes/download/;
   proxy_http_version 1.1;
   proxy_set_header Upgrade $http_upgrade;
   proxy_set_header Connection 'upgrade';
   proxy_set_header Host $host;
   proxy_cache_bypass $http_upgrade;
}