How to use ssl in Redmine
Added by Steven Wong over 13 years ago
Hi,
I used CentOS and configure the Redmine on it. How could I config the SSL for Redmine.
Is there any simple way to config SSL?
Thanks.
Replies (1)
RE: How to use ssl in Redmine
-
Added by Carlos Miranda Molina over 13 years ago
You are using Apache....?
You need to replicate your VirtualHost with SSL port
<VirtualHost *:80> ServerName yourserver </VirtualHost>
<VirtualHost *:443> ServerName yourserver SSLEngine on # A self-signed (snakeoil) certificate can be created by installing # the ssl-cert package. See # /usr/share/doc/apache2.2-common/README.Debian.gz for more info. # If both key and certificate are stored in the same file, only the # SSLCertificateFile directive is needed. SSLCertificateFile /etc/ssl/certs/ssl-cert-snakeoil.pem SSLCertificateKeyFile /etc/ssl/private/ssl-cert-snakeoil.key </VirtualHost>
etc...