Merge pull request #562 from bergware/master

VM settings: fixed Apply button sometimes not working
This commit is contained in:
tom mortensen
2019-12-19 21:55:54 -08:00
committed by GitHub
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -293,7 +293,7 @@ $(function(){
}
var run = true;
$("#settingsForm").find('input[type="text"]').each(function(){
if ($(this).attr('pattern')) {
if ($(this).is(':visible') && $(this).attr('pattern')) {
var pattern = new RegExp($(this).attr('pattern'));
if (!pattern.test($(this).val())) {$(this).css('color','red'); run = false;}
}
+3 -3
View File
@@ -226,19 +226,19 @@ Use SSL/TLS:
> **nginx certificate handling details**
>
> The nginx startup script looks for a SSL certificate on the USB boot flash in this order:<br>
> `config/ssl/certs/certficate_bundle.pem`<br>
> `config/ssl/certs/certificate_bundle.pem`<br>
> `config/ssl/certs/<server-name>_unraid_bundle.pem`
>
> If neither file exists, a self-signed SSL certificate is automatically created and stored in<br>
> `config/ssl/certs/<server-name>_unraid_bundle.pem`<br>
>
> Provisioning a Let's Encrypt certificate writes the certificate to<br>
> `config/ssl/certs/certficate_bundle.pem`<br>
> `config/ssl/certs/certificate_bundle.pem`<br>
>
> **nginx stapling support**
>
> Whether nginx enables OCSP Staping is determined by which certificate is in use:<br>
> `config/ssl/certs/certficate_bundle.pem` => Yes<br>
> `config/ssl/certs/certificate_bundle.pem` => Yes<br>
> `config/ssl/certs/<server-name>_unraid_bundle.pem` => No
HTTP port: