知乎专栏 |
Maximum number of threads.
<thread-max>4096</thread-max>
thread-max数值需要使用ab命令做压力测试,逐步调整。
<!-- Configures the keepalive --> <keepalive-max>128</keepalive-max> <keepalive-timeout>15s</keepalive-timeout>
<http address="*" port="443"> <openssl> <certificate-file>/srv/keys/example.com/star.example.com.crt</certificate-file> <certificate-key-file>/srv/keys/example.com/star.example.com.key</certificate-key-file> <password>4fff74da-aea4-a9fc-4b5f-e6d497588726</password> </openssl> </http>
自颁发证书,首先是使用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 这个容器中的配置如下 <http address="*" port="443"> <jsse-ssl> <key-store-file>keys/server.keystore</key-store-file> <password>password</password> </jsse-ssl> </http>