← Back to team overview

nagios-charmers team mailing list archive

[Bug 1777904] [NEW] SSL Config

 

Public bug reported:

When enabling ssl using a certificate authority, the config file gets
copied to the wrong file. in hooks/upgrade-charm line 310.

The line reads as follow:
  with open('/etc/apache2/sites-available/default-ssl', 'w') as f:

and it should be like this:

  with open('/etc/apache2/sites-available/default-ssl.conf', 'w') as f:

this causes apache not to load the right config when using SSL with a
CA.

** Affects: nagios-charm
     Importance: Undecided
         Status: New

-- 
You received this bug notification because you are a member of Nagios
Charm developers, which is subscribed to Nagios Charm.
https://bugs.launchpad.net/bugs/1777904

Title:
  SSL Config

Status in Nagios Charm:
  New

Bug description:
  When enabling ssl using a certificate authority, the config file gets
  copied to the wrong file. in hooks/upgrade-charm line 310.

  The line reads as follow:
    with open('/etc/apache2/sites-available/default-ssl', 'w') as f:

  and it should be like this:

    with open('/etc/apache2/sites-available/default-ssl.conf', 'w') as
  f:

  this causes apache not to load the right config when using SSL with a
  CA.

To manage notifications about this bug go to:
https://bugs.launchpad.net/nagios-charm/+bug/1777904/+subscriptions


Follow ups