fork process

This commit is contained in:
Lucy Cifferello
2020-08-14 14:48:25 -06:00
parent 1592ff55ce
commit b29ed6cade
3 changed files with 14 additions and 15 deletions

View File

@@ -53,7 +53,6 @@ data AppSettings = AppSettings
, sslKeyLocation :: FilePath
, sslCsrLocation :: FilePath
, sslCertLocation :: FilePath
, enableTor :: Bool
}
instance FromJSON AppSettings where
@@ -68,7 +67,6 @@ instance FromJSON AppSettings where
resourcesDir <- o .: "resources-path"
sslPath <- o .: "ssl-path"
registryHostname <- o .: "registry-hostname"
enableTor <- o .: "enable-tor"
let sslKeyLocation = sslPath </> "key.pem"
let sslCsrLocation = sslPath </> "certificate.csr"