Install SSL certificate (easyengine)

I have a WordPress site running which was installed with easyengine a few months ago. It runs very well and was a piece of cake to build with easyengine. However, now I need to install an SSL certificate and I’m afraid to mess with the nginx settings. Don’t want to break anything.

Any warning or suggestions on how I should go about this?

Thank you,

AJ

Hi Adriano CorteReal,

You can configure ssl rules in following files vim /etc/nginx/sites-available/example.com

listen 443 ssl;  
ssl_certificate /var/www/example.com/cert/example.com.crt;  
ssl_certificate_key /var/www/example.com/cert/example.com.key;

Reload Nginx

nginx -t && service nginx reload

More Information: WordPress-Nginx + Thawte SSL Setup