files.com 1.1.35 → 1.1.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_VERSION +1 -1
- data/docs/site.md +2 -2
- data/lib/files.com/models/site.rb +2 -2
- data/lib/files.com/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1b8ee5d64268999a1cafcb81ffbb3de9a8f6918e7c744d3276e777020a3adcc3
|
|
4
|
+
data.tar.gz: 6ba8c0cf60964cce0358be21490902ff789ff1c5a1a3345814596b5dcf098279
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9d04579d40cb7ac2be23c7631b8a84ef99870a62d3e252dbf4a9e02e5a3b613db318541676e696c397f5ef4a4742fcb5f550436545e38d912b08319b21e380dd
|
|
7
|
+
data.tar.gz: e1aecd172b2fe68022b343c0a338099cae5dae10ba4411a2a9ccd67537ec475669fc255a9f90f568b19598f57ab7a273744a7a489bbe2e0dbd2498267d674dc1
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.36
|
data/docs/site.md
CHANGED
|
@@ -388,7 +388,7 @@
|
|
|
388
388
|
* `sftp_enabled` (boolean): Is SFTP enabled?
|
|
389
389
|
* `sftp_host_key_type` (string): Sftp Host Key Type
|
|
390
390
|
* `active_sftp_host_key_id` (int64): Id of the currently selected custom SFTP Host Key
|
|
391
|
-
* `sftp_insecure_ciphers` (boolean): Are Insecure Ciphers allowed for SFTP? Note:
|
|
391
|
+
* `sftp_insecure_ciphers` (boolean): Are Insecure Ciphers allowed for SFTP? Note: Setting TLS Disabled -> True will always allow insecure ciphers for SFTP as well. Enabling this is insecure.
|
|
392
392
|
* `sftp_user_root_enabled` (boolean): Use user FTP roots also for SFTP?
|
|
393
393
|
* `sharing_enabled` (boolean): Allow bundle creation
|
|
394
394
|
* `show_request_access_link` (boolean): Show request access link for users without access? Currently unused.
|
|
@@ -627,7 +627,7 @@ Files::Site.update(
|
|
|
627
627
|
* `session_expiry` (double): Session expiry in hours
|
|
628
628
|
* `ssl_required` (boolean): Is SSL required? Disabling this is insecure.
|
|
629
629
|
* `tls_disabled` (boolean): Are Insecure TLS and SFTP Ciphers allowed? Enabling this is insecure.
|
|
630
|
-
* `sftp_insecure_ciphers` (boolean): Are Insecure Ciphers allowed for SFTP? Note:
|
|
630
|
+
* `sftp_insecure_ciphers` (boolean): Are Insecure Ciphers allowed for SFTP? Note: Setting TLS Disabled -> True will always allow insecure ciphers for SFTP as well. Enabling this is insecure.
|
|
631
631
|
* `disable_files_certificate_generation` (boolean): If set, Files.com will not set the CAA records required to generate future SSL certificates for this domain.
|
|
632
632
|
* `user_lockout` (boolean): Will users be locked out after incorrect login attempts?
|
|
633
633
|
* `user_lockout_tries` (int64): Number of login tries within `user_lockout_within` hours before users are locked out
|
|
@@ -599,7 +599,7 @@ module Files
|
|
|
599
599
|
@attributes[:active_sftp_host_key_id]
|
|
600
600
|
end
|
|
601
601
|
|
|
602
|
-
# boolean - Are Insecure Ciphers allowed for SFTP? Note:
|
|
602
|
+
# boolean - Are Insecure Ciphers allowed for SFTP? Note: Setting TLS Disabled -> True will always allow insecure ciphers for SFTP as well. Enabling this is insecure.
|
|
603
603
|
def sftp_insecure_ciphers
|
|
604
604
|
@attributes[:sftp_insecure_ciphers]
|
|
605
605
|
end
|
|
@@ -821,7 +821,7 @@ module Files
|
|
|
821
821
|
# session_expiry - double - Session expiry in hours
|
|
822
822
|
# ssl_required - boolean - Is SSL required? Disabling this is insecure.
|
|
823
823
|
# tls_disabled - boolean - Are Insecure TLS and SFTP Ciphers allowed? Enabling this is insecure.
|
|
824
|
-
# sftp_insecure_ciphers - boolean - Are Insecure Ciphers allowed for SFTP? Note:
|
|
824
|
+
# sftp_insecure_ciphers - boolean - Are Insecure Ciphers allowed for SFTP? Note: Setting TLS Disabled -> True will always allow insecure ciphers for SFTP as well. Enabling this is insecure.
|
|
825
825
|
# disable_files_certificate_generation - boolean - If set, Files.com will not set the CAA records required to generate future SSL certificates for this domain.
|
|
826
826
|
# user_lockout - boolean - Will users be locked out after incorrect login attempts?
|
|
827
827
|
# user_lockout_tries - int64 - Number of login tries within `user_lockout_within` hours before users are locked out
|
data/lib/files.com/version.rb
CHANGED