diff --git a/public/assets/css/app.css b/public/assets/css/app.css
index 17b3b95..2480598 100644
--- a/public/assets/css/app.css
+++ b/public/assets/css/app.css
@@ -137,6 +137,12 @@ main .options .card .form-subgroup {
padding-left: 0.5rem;
}
+main .options .card .form-subgroup .form-subgroup {
+ margin-left: 0;
+ border-left: 1px solid #d7e0ea;
+ padding-left: 0.4rem;
+}
+
main .options .card .form-control[type="text"]:placeholder-shown,
main .options .card .form-control[type="email"]:placeholder-shown {
background-color: #f8f8f8;
diff --git a/public/assets/js/app.js b/public/assets/js/app.js
index 2dd2127..0cbf4de 100644
--- a/public/assets/js/app.js
+++ b/public/assets/js/app.js
@@ -112,7 +112,7 @@
};
$scope.sslCertificate = function() {
- if ($scope.isLetsEncrypt()) {
+ if ($scope.isCertLetsEncrypt()) {
return '/etc/letsencrypt/live/' + $scope.domain() + '/fullchain.pem'
}
@@ -124,7 +124,7 @@
};
$scope.sslCertificateKey = function() {
- if ($scope.isLetsEncrypt()) {
+ if ($scope.isCertLetsEncrypt()) {
return '/etc/letsencrypt/live/' + $scope.domain() + '/privkey.pem'
}
@@ -285,11 +285,11 @@
return $scope.isHTTPS() && $scope.data.force_https;
};
- $scope.isLetsEncrypt = function() {
+ $scope.isCertLetsEncrypt = function() {
return $scope.isHTTPS() && $scope.data.cert_type === 'letsencrypt';
};
- $scope.isCustomCert = function() {
+ $scope.isCertCustom = function() {
return $scope.isHTTPS() && $scope.data.cert_type === 'custom';
};
diff --git a/public/index.html b/public/index.html
index 72ee286..63b7a46 100644
--- a/public/index.html
+++ b/public/index.html
@@ -102,37 +102,37 @@
Certification type:
-
-
-
+
/etc/nginx/_letsencrypt.conf