ssl
This is an old revision of the document!
Warning: Undefined variable $state in /usr/share/nginx/html/lib/plugins/tabinclude/helper.php on line 130
Warning: Undefined variable $html in /usr/share/nginx/html/lib/plugins/tabinclude/helper.php on line 240
Warning: Undefined array key "page" in /usr/share/nginx/html/lib/plugins/tabinclude/helper.php on line 265
Warning: Undefined array key "page" in /usr/share/nginx/html/lib/plugins/tabinclude/helper.php on line 268
Apache SSL Install
Apache < 2.4.8
Directive | Path to Enter |
---|---|
SSLCertificateFile | Certificate file path |
SSLCertificateKeyFile | Key file path |
SSLCertificateChainFile | Intermediate bundle path |
Apache 2.4.8+
Directive | Path to Enter |
---|---|
SSLCertificateFile | Certificate file path |
SSLCertificateKeyFile | Key file path |
SSLCACertificatePath | Intermediate bundle path |
- CentOS
- ubuntu - Page not found.
Creating CSR with OPEN SSL
This website will produce a command that you can use on your LINUX server to produce the Private key and CSR.
1 |
https: //www .digicert.com /easy-csr/openssl .htm |
Install
1 |
yum install mod_ssl |
Vhost
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
<VirtualHost *:80> ServerName lukeslinux.co.uk ServerAlias www.lukeslinux.co.uk DocumentRoot /var/www/vhosts/lukeslinux .co.uk <Directory /var/www/vhosts/lukeslinux .co.uk> Options Indexes FollowSymLinks AllowOverride All Order allow,deny Allow from all < /Directory > < /VirtualHost > <VirtualHost *:443> ServerName lukeslinux.co.uk ServerAlias www.lukeslinux.co.uk DocumentRoot /var/www/vhosts/lukeslinux .co.uk <Directory /var/www/vhosts/lukeslinux .co.uk> Options Indexes FollowSymLinks AllowOverride All Order allow,deny Allow from all < /Directory > SSLEngine ON SSLCertificateFile /etc/httpd/conf/ssl/ssl .crt /lukeslinux_co_uk .crt SSLCertificateKeyFile /etc/httpd/conf/ssl/ssl .key /lukeslinux_co_uk .key SSLCACertificateFile /etc/httpd/conf/ssl/ssl .key /ca .pem SSLCipherSuite DEFAULT:!EXP:!SSLv2:!DES:!IDEA:!SEED:+3DES:!aNULL:!eNULL:!EXPORT:!MD5:!PSK:!RC4:!AES128:!RSA128 SSLProtocol all -SSLv2 -SSLv3 -TLSv1 -TLSv1.1 +TLSv1.2 ErrorLog /var/log/httpd/lukeslinux .co.uk_ssl-error_log CustomLog /var/log/httpd/lukeslinux .co.uk_ssl-access_log common < /VirtualHost > |
Test SSL Install
1 |
https: //www .sslshopper.com /ssl-checker .html |
ssl.1454575742.txt.gz · Last modified: 2024/05/23 07:26 (external edit)