Pages

Wednesday, May 1, 2013

Shibboleth Service Provider Apache Configuration

Shibboleth Service Provider Apache Configuration

Login as a root or sudo user and modify the httpd.conf and ssl.conf file.

Modify httpd.conf file

Go to the /etc/conf/ directory and edit the httpd.conf file. Modify the following parameters.
UseCanonicalName  On
ServerName  <host.domainName>. For example service provider domain name is sp.liyaqat.com
 
Modify the ssl.conf file

By default SSL is enabled after installing the mod_ssl. If you want to change self signed certificate to Signed Certificate. Please modify the following parameters in the /etc/httpd/conf.d/ssl.conf file.  

SSLCertificateFile /etc/pki/tls/certs/localhost.crt
SSLCertificateKeyFile /etc/pki/tls/private/localhost.key

Testing the Configuration

Run the apachectl -t command and it will verify the configuration changes and it will give the results. If you found any error while running the apachectl -t command, please fix the errors and retry until it comes Syntax OK

Restart the Apache Server

Run the service httpd restart command and it will restart the apache httpd server.

Log Files Location

The log files are available in the /etc/httpd/logs/ directory.


>>Follow the Shibboleth Service Provider Configuration

No comments:

Post a Comment