镜像是 dko0/squoosh:1.12.0 或者 dko0/squoosh:latest 。
docker hub: https://hub.docker.com/r/dko0/squoosh
GitHub: https://github.com/hellodk34/squoosh
安全,图片只在本地浏览器,不会上传到任何服务器
高效,squoosh 压缩效率惊人,图片品质却没有损失多少,配合各种压缩选项和品质设置,自由度很高。这波必须赞美 https://github.com/Goog... 阅读全文
常规端口 standard port
常规端口很简单,使用两个 server 块,一个监听 80 做跳转,一个监听 443 做实际 serving
server {
listen 80 default_server;
server_name xxx.example.com;
return 301 https://$server_name$request_uri;
}
server {
listen 443 ssl http2;
server_name xxx.ex... 阅读全文
搜遍了全网,只有这个链接 ( https://forum.openwrt.org/t/solved-luci-overview-page-has-blank-fields/16967 ) 类似。但我使用 frp 映射后的域名访问主页又能正常展示这些字段。看了下接口返回均是 200,response 也都正常。
我的是下面这样的
通过 F12 Console 可以看到 Uncaught TypeError: Cannot read properties of null (reading 'w... 阅读全文