Can not See SSL Lock Symbol for NAGIOS

Support forum for Nagios Core, Nagios Plugins, NCPA, NRPE, NSCA, NDOUtils and more. Engage with the community of users including those using the open source solutions.
Locked
prakash.thakor
Posts: 3
Joined: Wed Nov 28, 2012 8:28 am

Can not See SSL Lock Symbol for NAGIOS

Post by prakash.thakor »

Hi,

I have installed Nagios 3 on Centos 5.3 with Apache 2.3

I have opted CA root SSL Certificate from Rapidssl.com and successfully copied and configured for apache.

Now when I browse the nagios using https://myadomain/nagios/ then I can not see SSL Yellow Lock from neither IE nor Mozilla.

However, when i browse https://myadomain.com/test.html I can see the SSL yellow Lock.

Do i missing something.

How can i configure SSL for Nagios CGI or PHP

Pls Help

Thanks
Prakash
Last edited by prakash.thakor on Thu Nov 29, 2012 3:04 am, edited 1 time in total.
slansing
Posts: 7698
Joined: Mon Apr 23, 2012 4:28 pm
Location: Travelling through time and space...

Re: Can not Seel SSL Lock Symbol for NAGIOS

Post by slansing »

Did you attempt to follow a guide for this? Or have a documented path you took to get where you are now?

Can you please post the following:

Code: Select all

/etc/httpd/conf.d/nagios.conf
prakash.thakor
Posts: 3
Joined: Wed Nov 28, 2012 8:28 am

Re: Can not Seel SSL Lock Symbol for NAGIOS

Post by prakash.thakor »

Hi,

1. I have added SSL certifcate paths to /etc/httpd/conf.d/ssl.conf file.

Ref : https://knowledge.rapidssl.com/support/ ... &id=SO6252

SSLCACertificateFile /etc/httpd/conf/intermediate.crt
SSLCertificateFile /etc/httpd/conf/public.crt
SSLCertificateKeyFile /etc/httpd/conf/private.key


2. Pls find the attchment for working SSL with yellow Lock and non working SSL only for NAGIOS.
Also I have noted that when I browse NAGIOS the SSL Lock shows for some seconds and suddenly disappers as soon as nagios loaded completly .

3. below is my nagios.conf file

ScriptAlias /nagios/cgi-bin "/usr/local/nagios/sbin"

<Directory "/usr/local/nagios/sbin">
SSLRequireSSL
Options ExecCGI
AllowOverride None
Order allow,deny
Allow from all
# Order deny,allow
# Deny from all
# Allow from 127.0.0.1
AuthName "Nagios Access"
AuthType Basic
AuthUserFile /usr/local/nagios/etc/htpasswd.users
Require valid-user
</Directory>

Alias /nagios "/usr/local/nagios/share"

<Directory "/usr/local/nagios/share">
SSLRequireSSL
Options None
AllowOverride None
Order allow,deny
Allow from all
# Order deny,allow
# Deny from all
# Allow from 127.0.0.1
AuthName "Nagios Access"
AuthType Basic
AuthUserFile /usr/local/nagios/etc/htpasswd.users
Require valid-user
</Directory>
Attachments
SSL not working for nagios
SSL not working for nagios
SSL working
SSL working
Locked