1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 15:42:48 -05:00

create empty ssl directory if using own certs

This commit is contained in:
Kyle Spearrin
2017-11-10 15:30:18 -05:00
parent 6110da4ba9
commit 16e1e8d78e

View File

@ -5,6 +5,7 @@ using System.Collections.Generic;
using System.Data.SqlClient;
using System.Net.Http;
using System.Reflection;
using System.IO;
namespace Bit.Setup
{
@ -75,6 +76,7 @@ namespace Bit.Setup
if(ssl)
{
Directory.CreateDirectory($"/bitwarden/ssl/{domain}/");
Console.WriteLine("Make sure 'certificate.crt' and 'private.key' are provided in the " +
"appropriate directory (see setup instructions).");
}