SSL 设计目标:
- 防内容篡改
- 防冒充服务器身份
- 加密通信内容
而翻墙的目标:
- 不被检测出客户端在访问什么网站
- 不被检测出服务器在提供翻墙服务
SSL 设计目标:
而翻墙的目标:
| ad.flipboard.com | |
| ads.viksaffiliates.com | |
| anzeigen-buchen.sueddeutsche.de | |
| anzeigen.sueddeutsche.de | |
| app-measurement.com | |
| blickonl-ssl.wemfbox.ch | |
| cdn2.teads.tv | |
| cdn.xplosion.de | |
| ciqcol01.ciq.labs.att.com | |
| click2createahero.net |
java -jar i2pinstall_*.jartar xzf wrapper-*.tar.gzcp wrapper*/bin/wrapper /Applications/i2p/i2psvccp wrapper*/lib/wrapper.jar /Applications/i2p/libcp wrapper*/lib/libwrapper.so /Applications/i2p/lib/Applications/i2p/i2prouter start or Start I2P Router appSo HAProxy is primalery a load balancer an proxy for TCP and HTTP. But it may act as a traffic regulator. It may also be used as a protection against DDoS and service abuse, by maintening a wide variety of statistics (IP, URL, cookie) and when abuse is happening, action as denying, redirecting to other backend may undertaken ([haproxy ddos config], [haproxy ddos])
| // | |
| // _oo0oo_ | |
| // o8888888o | |
| // 88" . "88 | |
| // (| -_- |) | |
| // 0\ = /0 | |
| // ___/`---'\___ | |
| // .' \\| |// '. | |
| // / \\||| : |||// \ | |
| // / _||||| -:- |||||- \ |
| // JavaScript 字符串编码使用 UTF-16 | |
| "💩".length === 2; | |
| "💩" === "\u{1F4A9}"; // es6 | |
| "💩" === "\uD83D\uDCA9"; // es5 | |
| // 同一个编码可能使用不同的码位 | |
| "ò" === "ò"; // ❎ | |
| "ò" === "\xF2"; // ✅ | |
| "ò" === "o\u0300"; // ✅ | |
| "o\u0300".normalize("NFC") === "\xF2"; // ✅ es6 提供了 normalize 函数 |
| ############################################################################### | |
| # The MIT License | |
| # | |
| # Copyright 2012-2014 Jakub Jirutka <[email protected]>. | |
| # | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy | |
| # of this software and associated documentation files (the "Software"), to deal | |
| # in the Software without restriction, including without limitation the rights | |
| # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| # copies of the Software, and to permit persons to whom the Software is |
| # Optimized my.cnf configuration for MySQL/MariaSQL on cPanel/WHM servers | |
| # | |
| # by Fotis Evangelou, developer of Engintron (engintron.com) | |
| # | |
| # === Updated December 2018 === | |
| # | |
| # The settings provided below are a starting point for a 2GB - 4GB RAM server with 2-4 CPU cores. | |
| # If you have less or more resources available you should adjust accordingly to save CPU, | |
| # RAM and disk I/O usage. | |
| # The settings marked with a specific comment or the word "UPD" after the value |