最新文章
  • nginx 常用命令

    Centos 7 常用命令 # 启动服务 systemctl start nginx # 停止服务 systemctl stop nginx # 重启服务 systemctl restart nginx # 添加开机启动 systemc……

    Akiraka 2020-02-09
    0 0
  • Docker Nginx反向代理支持websocket

    upstream rancher { server rancher:80; server rancher:443; } server { listen 80; listen 443 ssl http2; ssl_certificate /usr/local/nginx/con……

    Akiraka 2020-02-09
    0 0
  • Nginx 普通配置

    server { listen 80; server_name zabbix.ekzc.com; access_log /data/wwwlogs/zabbix.akiraka.com_nginx.log combined; index index.html index.htm ……

    Akiraka 2020-02-09
    0 0
  • Docker nginx和php分离配置

    server { listen 80; server_name test.akiraka.net; index index.html index.htm index.php; root $webroot; set $webroot '/data/wwwroot/te……

    Akiraka 2020-02-09
    0 0
  • Nginx 反向代理配置

    配置文件如下 server { listen 80; server_name 域名; location / { # 这里填写需要代理的域名或IP与端口 proxy_pass http://127.0.0.1:880……

    Akiraka 2020-02-09
    0 0
  • brew 更换国内源

    1) 将brew的install文件下载本地 curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install >> brew_install 2)修改install文……

    Akiraka 2020-02-09
    0 0
  • pip 更换源

    临时源 使用国内源安装缺少内容 pip install -i https://pypi.doubanio.com/simple/ --trusted-host pypi.doubanio.com ipython 更换源 # 创建配置文件目录 mk……

    Akiraka 2020-02-09
    0 0
  • pip 子命令

    PIP 子命令 名称 IP地址范围 install 安装软件包 download 下载安装包 uninstall 卸载安装包 freeze 按照 requirements格式输出安装包,可以到其……

    Akiraka 2020-02-09
    0 0
  • sqlite3数据库

    macos系统缺少sqlite3数据库 brew install sqlite3 export LDFLAGS="-L/usr/local/opt/sqlite/lib" export CPPFLAGS="-I/usr/local/opt/sqlite……

    Akiraka 2020-02-09
    0 0
  • MAC 安装Pyenv-virualemv

    安装pyenv git clone https://github.com/pyenv/pyenv.git ~/.pyenv 设置环境变量 echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/……

    Akiraka 2020-02-09
    0 0