at this point it is clear that I have no idea and neither do the google pages I am looking at

This commit is contained in:
Stephen Smoogen 2017-06-23 17:33:52 +00:00
parent 73c9a0b035
commit 255d78da20

View file

@ -29,33 +29,28 @@ Alias /nagios /usr/share/nagios/html/
</Directory>
{% else %}
<Directory "/usr/lib64/nagios/cgi-bin/">
SSLRequireSSL
Options ExecCGI
AllowOverride None
AuthName "Nagios GSSAPI Login"
GssapiCredStore keytab:/etc/krb5.HTTP_nagios-external{{env_suffix}}.fedoraproject.org.keytab
AuthType GSSAPI
# This is off because Apache (and thus mod_auth_gssapi) doesn't know this is proxied over TLS
GssapiSSLonly Off
GssapiLocalName on
Require valid-user
</Directory>
Alias /nagios "/usr/share/nagios/html"
<Directory "/usr/share/nagios/html">
SSLRequireSSL
Options None
AllowOverride None
<Location ~ /nagios/>
AuthName "Nagios GSSAPI Login"
GssapiCredStore keytab:/etc/krb5.HTTP_nagios-external{{env_suffix}}.fedoraproject.org.keytab
AuthType GSSAPI
# This is off because Apache (and thus mod_auth_gssapi) doesn't know this is proxied over TLS
GssapiSSLonly Off
GssapiSSLonly On
GssapiLocalName on
GssapiPublishErrors On
Require valid-user
</Location>
<Location ~ "/nagios/cgi-bin/">
Options ExecCGI
</Location>
<Directory "/usr/share/nagios/html">
Options None
</Directory>
{% endif %}