363d1bb20f
This change is mostly for FB internal organizational reasons. Building is not effected beyond the fact that the target now lands in hphp/hhvm/hhvm rather than src/hhvm/hhvm.
18 linhas
404 B
Plaintext
18 linhas
404 B
Plaintext
<h2>SSL Server Setup</h2>
|
|
|
|
1. Prepare Certificates
|
|
|
|
Prepare two files: one certificate file and one key file. Make sure they are
|
|
readble by the user account that runs web server.
|
|
|
|
2. Configuration Change
|
|
|
|
Prepare configurations like this,
|
|
|
|
Server {
|
|
EnableSSL = true
|
|
SSLPort = 443
|
|
SSLCertificateFile = /full_path_to_certificate
|
|
SSLCertificateKeyFile = /full_path_to_certificate_file
|
|
}
|