Other articles


  1. DNS,dnsmasq,dnscrypt,

    在Mac OSX 上配置 DNSCrypt+dnsmasq 防止污染

    今天无意间看到一个防治DNS 污染的文章原文地址,想试试,没想到折腾了三天,记录一下操作过程。

    中间还折腾了一下unbound,结果在Mac上启动不起来,一启动就退出了,没有找到原因,如果有大神知道原因,还请指教。

    1. 安装

    在Mac上安装DNSCrypt和dnsmasq还是比较容易的,直接用Homebrew安装就可以。

    $ brew install dnsmasq
    $ brew install dnscrypt-proxy
    

    2.启动DNSCrypt

    DNSCrypt-proxy主要通过加密的隧道来解析一些被污染的dns地址。直接贴过来上面文章里的启动参数

    ➜  ~ sudo /usr/local/sbin/dnscrypt-proxy --local-address=127.0.0.1:40 --edns-payload-size=4096 --user=nobody --resolver-address ...
    read more

    There are comments.

  2. arrange uwsgi with bottle in ubuntu

    Nginx 快速部署Bottle+Uwsgi

    1. 安装

    安装 uwsgi 和 Bottle 框架

    sudo apt-get install uwsgi uwsgi-plugin-python python-bottle nginx
    

    2. Bottle程序结构

    /var/www/webapp/
        plugins/
            __init__.py
        static/
            css/
            files/
            images/
            js/
        views/
            base.tpl
            page.tpl
        app.py
    

    app.py

     1
     2
     3
     4
     5
     6
     7
     8
     9
    10
    11 ...
    read more

    There are comments.

  3. change npm source to taobao

    修改npm源到淘宝

    镜像使用方法(三种办法任意一种都能解决问题,建议使用第三种,将配置写死,下次用的时候配置还在):

    1.通过config命令

    npm config set registry https://registry.npm.taobao.org 
    npm info underscore (如果上面配置正确这个命令会有字符串response)
    

    2.命令行指定

    npm --registry https://registry.npm.taobao.org info underscore
    

    3.编辑 ~/.npmrc 加入下面内容

    registry = https://registry.npm.taobao.org
    

    搜索镜像: https://npm.taobao.org

    建立或使用镜像,参考: https ...

    read more

    There are comments.

blogroll

social