mirror of
https://github.com/unraid/webgui.git
synced 2026-04-22 18:19:14 -05:00
Merge pull request #562 from bergware/master
VM settings: fixed Apply button sometimes not working
This commit is contained in:
@@ -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;}
|
||||
}
|
||||
|
||||
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user