常见的 nginx 配置文件的写法
http 与 https 按照给 php 环境配置的样子举例 httpserver { listen 80; root /xxx/xxx/xxx; # 项目目录 index index.html index.php; server_name domain.xx.xx; # 绑定的域名或者 ip server_tokens off; location ~* .(...
Python 使用 virtualenvwrapper 创建虚拟环境
为了不影响本地的大环境或者同时安装 python2 以及 python3 之后的方便切换,使用 python 的虚拟环境大多数用 virtualenv 来做,我用 virtualenvwrapper 来做,方便管理 Windows 环境下假设 python3 在 path 下,python2 未添加安装 pip inst...
Let's Encrypt 通配符 SSL 证书免费申请
之前写过一个 Let's Encrypt 来申请单域名的 SSL 证书的步骤,详情请看:certbot 免费 SSL 证书申请部署步骤 https://freessl.org 通配符要选择第二个的输入框中写入要申请的通配符域名,比如*.iicats.com,然后点击创建免费的 SSL 证...