SSL Certificate Installation on XAMPP

SSL Certificate Installation on XAMPP

Before installing the certificate, ensure that the CSR has been generated and the certificate has been បានធ្វើឱ្យសកម្ម, បានធ្វើឱ្យមានសុពលភាព, and issued.

How to SSL Install Certificate on XAMPP

ទាញយកវិញ្ញាបនបត្រ from your account or email, and then use the provided files for installation.

For this particular installation process, you will need three files:

ជំហានទី 1

របស់អ្នក ពួកគេផ្តល់វិញ្ញាបនបត្រ SSL (the .crt file, or ‘Security certificate’) from the downloaded archive;

ជំហានទី 2

The Certificate Authority bundle (the .ca-bundle file) which can be located in the archive you got from your 1Byte account. If you download the certificate archive from the email sent by COMODO, the bundle might be broken into three pieces, such as COMODORSADomainValidationSecureServerCA.crt, COMODORSAAddTrustCA.crt, and AddTrustExternalCARoot.crt. In this case, it will be necessary to combine them into a single .crt file in the following order:

  1. COMODORSADomainValidationSecureServerCA.crt
  2. COMODORSAAddTrustCA.crt
  3. AddTrustExternalCARoot.crt.

You can use the regular text editor on your computer to combine them, but it’s essential to make sure that there are no blank spaces between the three codes as shown below:

ជំហានទី 3

សោឯកជន. This code should have been generated on your server along with the CSR code that was used for certificate activation. This code is confidential. It is not provided to us at any stage of the certificate processing so it can only be found on the server or other location where the CSR was created.

Once you have all the needed files and are sure that the certificate matches your private key (which can be checked using this tool), you can start the installation by following the steps below.

1) Upload the aforementioned files to the server. It may be more convenient to use a single folder to store the files (such as xampp\apache\ssl), however, you can upload the files to any directory on the server that’s convenient for you.

2) Locate the configuration file for your website. There are two ways to locate it:

  • Directly from the XAMPP control panel:
  • Using file explorer. The path to the configuration file depends on the folder you chose during setup of XAMPP control panel. You can see the folder of installation when opening the panel:

The directory specified should contain the កម្មវិធី Apache folder. From there, navigate to the conf folder >> បន្ថែម folder >> httpd-ssl.conf file. You can open the file with any text editor.
The following command may be helpful to find all configuration files from which Apache reads Virtual Hosts:

“D:\xampp\apache\bin\httpd.exe” -S

Please make sure to use your own path to the XAMPP folder in the command.

  • Edit the configuration file with the Virtual Host for កំពង់ផែ 443 and save the changes. Here is the example of the block that should be added:


DocumentRoot “/var/www”
ServerName yoursite.com
ServerAlias www.yoursite.com
SSLEngine on
SSLCertificateFile “D:/xampp/apache/ssl/yourdomain_com.crt”
SSLCertificateKeyFile “D:/xampp/apache/ssl/yourdomain_com.key”
SSLCACertificateFile “D:/xampp/apache/ssl/yourdomain_com.ca-bundle”

Please make sure to use your own paths and filenames in the certificate directives.

ចំណាំ: Usually, there is a self-signed certificate already installed on the server. In this situation, it is not necessary to add another Virtual Host. The existing one for port 443 should be edited with the paths to your new trusted certificate, bundle, and private key.

  • After the changes are saved, restart the server. This can be done via the XAMPP control panel by stopping Apache:

And then starting it again:

Once the above steps are completed, you can check the installation using this tool.