读好书,交益友
发布时间:2018-10-11 14:56:28
1 Create a Root CA and generate a server certificate, private key, client certificate, and client key.openssl genrsa -des3 -out ca.key 4096openssl req -new -x509 -days 365 -key ca.key -out ca.crt -subj "/C=CN/ST=beijing/L=haidianO=changyang/CN=Self-Signed CA"openssl genrsa -out client.key 4096.........【阅读全文】
发布时间:2017-02-06 15:15:23
nginx配置文件server { listen 4000; server_name localhost; root /study/apk; autoindex on; index index.htm index.html; include mime.types; types{application/vnd.android.package-archive apk;}  .........【阅读全文】
发布时间:2015-06-24 11:28:12
1 设置debugCFLAGS="-g -O0"2 ./configure --prefix=/tmp/nginx --with-debug --with-http_stub_status_module --with-http_realip_module --with-http_perl_module......【阅读全文】
发布时间:2015-03-03 14:49:57
最近使用的平台有很多怪异的地方./configure --prefix=/usr/local/server/nginx --with-cc-opt="-I /usr/include/pcre -I /usr/include/openssl" --with-debug --with-http_stub_status_module --with-http_ssl_module --with-http_realip_module --with-http_ssl_module.........【阅读全文】