Posts

Showing posts with the label crt

Setting up SSL in Apache 2.2 in Windows

To enable SSL in Apache 2.2 in a Windows environment, you need to have these following things, certificates: + Your server certificate + The Intermediate CA certificate + The root CA certificate or + The combined certificate (of the above ones) and + The private key 1. Open the main configuration file of Apache ( C:\Program Files\Apache Software Foundation\Apache2.2\conf\httpd.conf ) and make sure these lines look like following: ... Include conf/extra/httpd-ssl.conf ... LoadModule ssl_module modules/mod_ssl.so ... 2. Open the ssl configuration file ( C:\Program Files\Apache Software Foundation\Apache2.2\conf\extra\httpd-ssl.conf ) and modify as following: 3. Restart the Apache service: > Open Windows command prompt (> Start > type cmd) and enter: C:\ net stop apache2.2 C:\ net start apache2.2

To import SSL certificate and key into PowerSchool's database

In order to use the PowerSchool's API(s) or to enable Single Sign-on with 3rd-party app using SAML2, we need to enable HTTPS. To enable HTTPS on this application server, import a certificate and private key into the database. If you have already imported a certificate on this or any other application node, skip this procedure. If you do not yet have a certificate you will have the option to import and enable HTTPS at a later time If you choose to import, all certificates should be standard X509 certificates in standard Privacy Enhanced Mail (PEM) format. Viewed in a text editor, PEM format certificates start with "------BEGIN CERTIFICATE-----" and end with "-----END CERTIFICATE-----". The private key file should also be in PEM format . The private key password is the password you set when you generated the private key/certificate request pair. If your certificate authority provides an intermediate certificate or certificates, include them here. My private ...