Commit b4da64510dcb9d0cb6b54504485c7584eb125945

Authored by Antonio Terceiro
1 parent be0bf86e

HTTPS: instruct people to create better SSL certificates

- using 2048 bits keys
- *not* forcing SHA1 hashes
Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
INSTALL.https.md
... ... @@ -11,8 +11,8 @@ as below:
11 11  
12 12 # mkdir /etc/noosfero/ssl
13 13 # cd /etc/noosfero/ssl
14   - # openssl genrsa 1024 > noosfero.key
15   - # openssl req -new -x509 -nodes -sha1 -days $[10*365] -key noosfero.key > noosfero.cert
  14 + # openssl genrsa 2048 > noosfero.key
  15 + # openssl req -new -x509 -nodes -days $[10*365] -key noosfero.key > noosfero.cert
16 16 # cat noosfero.key noosfero.cert > noosfero.pem
17 17  
18 18 ## Web server configuration
... ...