diff options
Diffstat (limited to 'nginx-ssl.example.conf')
-rw-r--r-- | nginx-ssl.example.conf | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/nginx-ssl.example.conf b/nginx-ssl.example.conf index 24d366e810e..aba9f0c5f26 100644 --- a/nginx-ssl.example.conf +++ b/nginx-ssl.example.conf @@ -11,18 +11,18 @@ ## https://raymii.org/s/tutorials/Strong_SSL_Security_On_nginx.html & https://cipherli.st/ ## ## Generate a strong SSL-Certificate and DHE parameter: - ## openssl genrsa -out /etc/ssl/private/zarafa.key 4096 - ## openssl req -new -sha512 -key /etc/ssl/private/zarafa.key -out /tmp/zarafa.csr - ## openssl x509 -req -days 3650 -in /tmp/zarafa.csr -signkey /etc/ssl/private/zarafa.key -out /etc/ssl/private/zarafa.crt - ## openssl dhparam -out /etc/ssl/private/zarafa.dh 4096 - ## chmod go-rwx /etc/ssl/private/zarafa.*; - ## chmod u+rw /etc/ssl/private/zarafa.* - ## chown root:root /etc/ssl/private/zarafa.* + ## openssl genrsa -out /etc/ssl/private/kopano.key 4096 + ## openssl req -new -sha512 -key /etc/ssl/private/kopano.key -out /tmp/kopano.csr + ## openssl x509 -req -days 3650 -in /tmp/kopano.csr -signkey /etc/ssl/private/kopano.key -out /etc/ssl/private/kopano.crt + ## openssl dhparam -out /etc/ssl/private/kopano.dh 4096 + ## chmod go-rwx /etc/ssl/private/kopano.*; + ## chmod u+rw /etc/ssl/private/kopano.* + ## chown root:root /etc/ssl/private/kopano.* ## ssl on; - ssl_certificate_key /etc/ssl/private/zarafa.key; - ssl_certificate /etc/ssl/private/zarafa.crt; - ssl_dhparam /etc/ssl/private/zarafa.dh; + ssl_certificate_key /etc/ssl/private/kopano.key; + ssl_certificate /etc/ssl/private/kopano.crt; + ssl_dhparam /etc/ssl/private/kopano.dh; ## https://raymii.org/s/tutorials/Strong_SSL_Security_On_nginx.html ## The recommended cipher suite for backwards compatibility (IE6/WinXP): |