Fix possible crash during array comparison with HackArrCompatCheckCompare
[hiphop-php.git] / hphp / doc / server.ssl
blob9bdb1cb3af285707e886790a4fb7dd92554d1d99
1 <h2>SSL Server Setup</h2>
3 1. Prepare Certificates
5 Prepare two files: one certificate file and one key file. Make sure they are
6 readable by the user account that runs web server.
8 2. Configuration Change
10 Prepare configurations like this,
12   Server {
13     EnableSSL = true
14     SSLPort = 443
15     SSLCertificateFile = /full_path_to_certificate
16     SSLCertificateKeyFile = /full_path_to_certificate_file
17   }