SSL/HTTPS
Phabricator deployment package has installed the SSL module of Nginx and open Certificate Authority Let's Encrypt for you configure the HTTPS quickly and conveniently.
In addition to the vhost configuration file, HTTPS settings do not need to modify any files in Nginx
Simple Steps
If you want to use a free certificate, just run the one command certbot
on your instance to start the HTTPS deployment.
If you have applied for a commercial certificate, complete the HTTPS configuration in just three steps:
- Upload your certificate to the directory of your instance: /data/cert
- Edit the vhost configuration file: /etc/apache2/sites-enabled/000-default.conf
- Insert the HTTPS template into VirtualHost{ } and modify to your certificate path
#-----HTTPS template start------------
SSLEngine on
SSLCertificateFile /data/cert/www.mydomain.com.crt
SSLCertificateKeyFile /data/cert/www.mydomain.com.key
#-----HTTPS template end------------
- Save file and Restart Apache service
Special Guide
For details on configuring HTTPS pre-conditions, HTTPS configuration segment templates, precautions, detailed steps, and troubleshooting, refer to the HTTPS Special Guide provided by Websoft9
← SMTP Backup & Restore →