分类 生活 下的文章

做网站基本都会用到Google分析 Google Analytics 谷歌旗下的统计系统

不懂为什么谷歌会把获取统计代码这么重要的功能,隐藏的如此之深,以至于新手根本无法找到

做了几个截图,大家跟着截图一步一步操作即可

1.登录Google Analytics后添加完网站以后,点击右下角的齿轮管理按钮,点击数据流,在数据流里点击你自己的域名

Google Analytics第一步

2.在弹出的 网站数据流详情 里,下拉找到 Google 代码,点击 配置代码设置

Google Analytics第二步

3.点击完 配置代码设置 后,在弹出的选项卡点击第三个选项 管理,点击添加 此Google代码

Google Analytics第三步

4.即可弹出你自己的谷歌分析代码

Google Analytics第四步

或者直接把下面的统计代码中 G-********** 替换成第二步数据流详情里显示的衡量ID即可

<script async src="https://www.googletagmanager.com/gtag/js?id=G-**********"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'G-**********');
</script>

给一个域名提交了HSTS https://hstspreload.org/,但是就是无法通过,一直提示

The HTTP page at http://domains.com sends an HSTS header. This has no effect over HTTP, and should be removed.

使用cloudflare CDN的话就正常,没有问题,如果使用自己的服务器需要修改NGINX的配置文件

在nginx配置文件server前面添加

map $scheme $hsts_header {
https "max-age=63072000; includeSubDomains; preload";
}

然后在server内添加

add_header Strict-Transport-Security $hsts_header;

把原本HSTS网站上要我们添加的

add_header Strict-Transport-Security: max-age=63072000; includeSubDomains; preload 

这一句给去掉即可

重启nginx

CMCCAdmin 超级密码:aDm8H%MdA. aDm8H%MdA
华为光猫常用超级账号:telecomadmin 超级密码:admintelecom.
移动光猫常用超级账号:telecomadmin 超级密码:nE7jA%5m.

openclash v0.40.10-beta版本以后增加了两个依赖libcap, libcap-bin

如果系统里面没有这两个依赖会导致无法启动,系统提示如下

2020-10-18 18:23:08 Error: Could Not Load The Capsh Library, Please Verify The Capsh Shell Library Work Well
2020-10-18 18:23:08 Tip: You Could Download And Re-Install The libcap & libcap-bin Library From The Address Below:

解决办法

ssh登录路由执行

opkg update
opkg install libcap
opkg install libcap-bin