views:

249

answers:

1

Is it possible to import the valid certificate of the windows server, where VisualSVN ist installed, into VisualSVN ?

+5  A: 

Yes, it's possible. Please consider the following steps:

  1. Export certificate and private key to pfx format
  2. Convert certificate and private key to PEM format using following command: "%VISUALSVN_SERVER%\bin\openssl" pkcs12 -in mycert.pfx -out mycert.pem -nodes
  3. Start VisualSVN Server Manager
  4. Open properties for root node
  5. Click Change certificate button on Certificate property page
  6. Choose "Import signed certificate" option
  7. Browse to PEM encoded certificate and private key
  8. Click Finish and then Apply
Ivan Zhakov