Electron 无法在 Windows 开始菜单中创建卸载快捷方式

从很久以前开始,微软已经不推荐在开始菜单中放置卸载入口,但很多开发者都不遵守。
于是从 Windows 8/10 (存疑) 开始,微软强制隐藏了卸载快捷方式,开发者主动或被动进行适配。
可以通过一些方式(多次创建/文件重命名)绕过,或者遵循微软的指导方针通过右键卸载。
UWP 程序会跳转至现代的设置界面,Win32 程序会跳转至经典的控制面板。

参考链接:
Why does my app’s uninstaller disappear from the Start menu?
Do Not Place Shortcuts to Documents, Help, or Uninstall in the Start Menu
Decide the right entry points to include in the Start screen
Squirrel.Windows
Squirrel to NSIS migration
How can I create an uninstall shortcut in the start menu?
Best practices
Inno Setup Start menu uninstall shortcut is not shown on Windows 10
Uninstall file in Start Menu applications list isn’t always shown
The uninstall button in the start menu is STILL a useless shortcut.

docker nginx upstream resolver dns

Docker:
The reverse proxy cannot obtain the correct IP address
Consider adding a script to import local resolver from /etc/resolv.conf

Nginx:
Nginx with dynamic upstreams
Using DNS for Service Discovery with NGINX and NGINX Plus
NGINX Plus: Load Balancing – Service Discovery Using DNS
Configuring HTTP Load Balancing Using DNS
Module ngx_http_upstream_module – resolver
openresty resolv.conf parsing

Cookie domain leading dot

在 1997 年的 RFC 2109 规范中,前导点表示应用于当前域和子域,并且必须含有前导点。
在 2011 年的 RFC 6265 规范中,如果存在前导点将会被忽略,应用于当前域和子域。
一些 Web 框架为了保持兼容性,在设置 domain 时会自动加上前导点。
在现在浏览器中,有没有前导点不影响请求携带 cookie ,但覆盖 cookie 时必须保证 domain 完全一样才行。

参考链接:
What does the dot prefix in the cookie domain mean?
Set-Cookie

nginx 下单页主应用和子应用,嵌套目录部署时,路劲重写和重定向方式