apache:certificates:use_password_protected_certificates
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
apache:certificates:use_password_protected_certificates [2023/07/17 11:06] – created peter | apache:certificates:use_password_protected_certificates [2023/07/17 11:08] (current) – peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Apache - Certificates - Use password protected certificates ====== | ====== Apache - Certificates - Use password protected certificates ====== | ||
+ | |||
+ | A lot of people remove the passphrase from their own key files because it is the simplest solution, but security-wise, | ||
+ | |||
+ | An alternative is to feed the passphrase to Apache. | ||
+ | |||
+ | * This can be done with the **SSLPassPhraseDialog** option in the httpd.conf (or another file that it includes). | ||
+ | |||
+ | If you only have one SSL site on your server, the simplest form of this would be: | ||
+ | |||
+ | <file bash / | ||
+ | # either of these will work | ||
+ | SSLPassPhraseDialog |/ | ||
+ | SSLPassPhraseDialog exec:/ | ||
+ | </ | ||
+ | |||
+ | |||
+ | Then create a very simple script called **/ | ||
+ | |||
+ | <file bash / | ||
+ | #!/bin/sh | ||
+ | echo "put the passphrase here" | ||
+ | </ | ||
+ | |||
+ | <WRAP warning> | ||
+ | **WARNING**: | ||
+ | </ | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | |||
+ | * If you have multiple SSL sites, **SSLPassPhraseDialog** has additional ways in which it can be used, so you can either have a single script for all of your keys, or a separate script for each, or however you want to do it. | ||
+ | |||
+ | </ | ||
apache/certificates/use_password_protected_certificates.1689591997.txt.gz · Last modified: 2023/07/17 11:06 by peter