Hyper-V: Protection Against Malicious DHCP with DHCP Guard
Note: this option is available on Windows Server 2012 The service DHCP is ever present…
Securing your website with SSL protects data and builds user trust. In this guide, we’ll walk you through the steps to efficiently install an SSL certificate on NGINX.
To successfully install an SSL certificate on your NGINX server, you will need the following files:
Once you have obtained these files from your Certificate Authority (CA), follow the steps below to complete the installation.
Manual Combination: Ensure you follow this sequence when combining the certificates:
1. Primary certificate for your domain.
2. Intermediate certificates.
3. Root certificate.Automatic Combination: Use the following commands to combine the certificates:
1. If you have separate intermediate and root files:
cat your_domain.crt intermediate.crt root.crt >> ssl-bundle.crt
2. If your intermediate and root certificates are in a single .ca-bundle file:
cat your_domain.crt bundle.crt >> ssl-bundle.crt
Note: Replace your_domain.crt and bundle.crt with the actual file names.
Save the combined file (ssl-bundle.crt) in your NGINX server’s SSL directory.
server {
listen 443;
ssl on;
ssl_certificate /etc/ssl/ssl-bundle.crt;
ssl_certificate_key /etc/ssl/private.key;
server_name yourdomain.com;
access_log /var/log/nginx/nginx.vhost.access.log;
error_log /var/log/nginx/nginx.vhost.error.log;
location / {
root /var/www/;
index index.html;
}
}
You can now install an SSL Certificate on NGINX. If you need further assistance, please don’t hesitate to contact our support team.
Read Also: How to Install NGINX in WHM
Explore more hosting insights, tips and industry updates.
Note: this option is available on Windows Server 2012 The service DHCP is ever present…
This article explains how to use the DIG (Domain Information Groper) command, an essential tool…
You can implement wildcard characters and supply a series of individual file names. Every file…