Page 1 of 1
Can not See SSL Lock Symbol for NAGIOS
Posted: Wed Nov 28, 2012 8:44 am
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
Re: Can not Seel SSL Lock Symbol for NAGIOS
Posted: Wed Nov 28, 2012 2:43 pm
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:
Re: Can not Seel SSL Lock Symbol for NAGIOS
Posted: Thu Nov 29, 2012 2:44 am
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>