Linux内核常见参数详解:
Linux / 2020年6月29日

一、修改最大进程数 系统允许创建的最大进程数量即是max user processes 这个参数。 我们可以使用 ulimit -u 65535 修改max user processes的值,但是只能在当前终端的这个session里面生效,重新登录后仍然是使用系统默认值。 正确的一次性修改是在/etc/security/limits.d/90-nproc.conf文件中, 该文件修改如下: * s...

CloudFlare CDN下Nginx正确获取真实IP
Nginx / 2020年6月24日

获取真实IP,我们不难想到 nginx 的 http realip module,就是当遇到IP是设定范围内的地址时,就逆向递归获取源目标的真实IP。对于Cloudflare CDN而言,也是遵从行业标准的,即使用X-Forwarded-For header 和 CF-Connecting-IP header 。 Cloudflare的真实IP地址可以从这里获取Cloudflare IP addr...

实时同步 Lsyncd
Linux , 工具 / 2020年6月19日

Ubuntu # sudo apt-get update sudo apt-get install lsyncd CentOS # yum -y update yum -y install lsyncd Running these commands will install Lsyncd as well as include some examples within the following d...

Let’s Encrypt申请多域名(SAN/UCC)SSL证书
SSL / 2020年6月5日

wget https://dl.eff.org/certbot-auto   sudo mv certbot-auto /usr/local/bin/certbot-auto sudo chown root /usr/local/bin/certbot-auto sudo chmod 0755 /usr/local/bin/certbot-auto /usr/local/bin/cert...