Ad Widget

Collapse

SSL certificate on web frontend on appliance 3.0.9

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • zabbixg
    Junior Member
    • Jun 2017
    • 5

    #1

    SSL certificate on web frontend on appliance 3.0.9

    How do I configure SSL certificate on zabbix appliance running with 3.0.9.

    Please share steps. I have valid CA certificate with us.
  • ovas
    Senior Member
    Zabbix Certified Trainer
    Zabbix Certified SpecialistZabbix Certified Professional
    • Apr 2017
    • 138

    #2
    Hello zabbixg!

    Execute a2enmod ssl
    Append the following lines to the /etc/apache2/conf-available/zabbix.conf:
    Code:
    <IfModule mod_ssl.c>
    <VirtualHost *:443> 
    SSLEngine on
    SSLCertificateFile /etc/apache2/ssl/apache.crt
    SSLCertificateKeyFile /etc/apache2/ssl/apache.key
    
    <here goes the usual stuff that was in the file by default>
    
    </VirtualHost>
    </IfModule>
    Don't forget about adjusting SSL settings as per your needs.
    Execute service apache2 restart

    This way I got my Apache running on SSL.

    Comment

    • zabbixg
      Junior Member
      • Jun 2017
      • 5

      #3
      Thanks ovas..

      Worked for me...

      Comment

      • onurzaim
        Junior Member
        • Aug 2013
        • 4

        #4
        Originally posted by ovas
        Hello zabbixg!

        Execute a2enmod ssl
        Append the following lines to the /etc/apache2/conf-available/zabbix.conf:
        Code:
        <IfModule mod_ssl.c>
        <VirtualHost *:443> 
        SSLEngine on
        SSLCertificateFile /etc/apache2/ssl/apache.crt
        SSLCertificateKeyFile /etc/apache2/ssl/apache.key
        
        <here goes the usual stuff that was in the file by default>
        
        </VirtualHost>
        </IfModule>
        Don't forget about adjusting SSL settings as per your needs.
        Execute service apache2 restart

        This way I got my Apache running on SSL.
        Worked for me too. Thanks.

        Comment

        Working...