本文共 1371 字,大约阅读时间需要 4 分钟。
Maximum number of threads.
4096
thread-max数值需要使用ab命令做压力测试,逐步调整。
128 15s
/srv/keys/example.com/star.example.com.crt /srv/keys/example.com/star.example.com.key 4fff74da-aea4-a9fc-4b5f-e6d497588726
自颁发证书,首先是使用keytool工具安装证书
生成证书:keytool –genkeypair –keyalg RSA –keysize 2048 SHA1withRSA –validity 3650 -alias neo –keystore server.keystore –storepass password –dname "CN=www.example.com, OU=test, O=example.com, L=SZ, ST=GD, C=CN"导出证书-keytool –exportcert –alias neo –keystore server.keystore –storepass password –file server.cer –rfc打印证书Keytool -printcert –file server.cer导出证书签发申请Keytool –certreg –aias neo –keystore server.keystore –storepass password –file ins.csr –v导入证书Keytool –importcert –trustcacerts –alias neo –file server.cer –keystore server.keystore –storepass password查看数字证书Keytool -list当成功的导入了证书以后就要容器中进行配置才可以使用首先是要把证书中的那个 server.keystore 和 server.cer这两个文件放入到Resin服务器的keys这个文件夹中 如果没有的话 就手动的建立这个文件夹然后去 config 文件夹下配置你的配置文件我在resin 这个容器中的配置如下keys/server.keystore password
原文出处:Netkiller 系列 手札
本文作者:陈景峯 转载请与作者联系,同时请务必标明文章原始出处和作者信息及本声明。