...
Now, depending on your Checkmk infrastructure, choose the appropriate manual:
Checkmk Appliance
Panel |
---|
borderColor | black |
---|
bgColor | #F8F8F8 |
---|
|
- Log into the webconf
- Navigate to Device Settings > Web Access
- Choose Upload Certificate
- Now choose the appropriate files and click Upload
Note |
---|
For the certificate chain, you only need the intermediate certificate(s), without the root certificate |
|
Linux Server
Panel |
---|
borderColor | black |
---|
bgColor | #F8F8F8 |
---|
|
The following steps depend on your specific Linux distribution: - Log into the server as root
. - Navigate to "/etc/[apache2|httpd]/"
. - Locate your website configuration file. In a default installation this would be:
- Debian derivates: /etc/apache2/sites-available/default-ssl.conf
- RedHat derivates: /etc/httpd/conf.d/my-ssl.conf
.
In the configuration file, you will find the following directives: Code Block |
---|
| SSLCertificateFile /path/to/certificate.pem
SSLCertificateKeyFile /path/to/certificate.key
SSLCertificateChainFile /path/to/chain.pem |
. - Save the file and reload Apache2: "systemctl reload [apache2|httpd]"
|
...