fix subdomain server certificate path

fixes #10
This commit is contained in:
Szekeres Bálint
2018-03-11 18:12:19 +01:00
parent 9e0eb0095c
commit 6ff1b0eb71
2 changed files with 4 additions and 4 deletions

View File

@@ -130,7 +130,7 @@
$scope.sslCertificate = function() {
if ($scope.isCertLetsEncrypt()) {
return '/etc/letsencrypt/live/' + $scope.domain() + '/fullchain.pem'
return '/etc/letsencrypt/live/' + $scope.domain() + '/fullchain.pem';
}
if ($scope.data.ssl_certificate) {
@@ -142,7 +142,7 @@
$scope.sslCertificateKey = function() {
if ($scope.isCertLetsEncrypt()) {
return '/etc/letsencrypt/live/' + $scope.domain() + '/privkey.pem'
return '/etc/letsencrypt/live/' + $scope.domain() + '/privkey.pem';
}
if ($scope.data.ssl_certificate_key) {