5/26/2018»»Saturday

Ssl Setup Apache Windows Web

5/26/2018
    69 - Comments
Apache Ssl InstallSsl Setup Apache Windows Webpass

Coin Hack Whirled Peace. • Save the primary and intermediate certificates to a folder on the server with the private key. • Open the Apache configuration file in a text editor. Apache configuration files are usually found in /etc/httpd. The main configuration file is usually named httpd.conf. In most cases the blocks will be at the bottom of this httpd.conf file. Sometimes you will find the blocks in a separate file in a directory like /etc/httpd/vhosts.d/ or /etc/httpd/sites/ or in a file called ssl.conf.

• If you need your site to be accessible through both secure (https) and non-secure (http) connections, you will need a virtual host for each type of connection. Make a copy of the existing non-secure virtual host and change the port from port 80 to 443. • Add the lines in bold below. DocumentRoot /var/www/website ServerName www.domain.com SSLEngine on SSLCertificateFile /etc/ssl/crt/primary.crt SSLCertificateKeyFile /etc/ssl/crt/private.key SSLCertificateChainFile /etc/ssl/crt/intermediate.crt • Change the names of the files and paths to match your certificate files: • SSLCertificateFile should be your primary certificate file for your domain name. • SSLCertificateKeyFile should be the key file generated when you created the. • SSLCertificateChainFile should be the intermediate certificate file (if any) that was supplied by your certificate authority • Save the changes and exit the text editor.