resin ssl配置

http://www.caucho.com/resin-2.1/ref/security.xtp#encryption



   1. Create a private key for the server:

      unix> openssl genrsa -des3 -out gryffindor.key 1024


   5. Configure Resin to use the files:

      ...
      <http port='443'>
        <ssl/>
        <certificate-key-file>/opt/ssl/keys/gryffindor.key</certificate-key-file>
        <key-store-password>password</key-store-password>
      </http>

你可能感兴趣的:(unix,Security)