Merge pull request #3166 from tobymurray/patch-1
Related to #1793, allow cleartext to LAN domains
This commit is contained in:
commit
aa9f4c2e6e
|
@ -38,6 +38,7 @@ git branch -u origin/main main
|
||||||
# And optionally
|
# And optionally
|
||||||
git remote prune origin
|
git remote prune origin
|
||||||
```
|
```
|
||||||
|
- Allow cleartext (non-SSL) connections to Matrix servers on LAN hosts (#3166)
|
||||||
|
|
||||||
Changes in Element 1.1.6 (2021-04-16)
|
Changes in Element 1.1.6 (2021-04-16)
|
||||||
===================================================
|
===================================================
|
||||||
|
|
|
@ -13,6 +13,16 @@
|
||||||
<domain includeSubdomains="true">10.0.2.2</domain>
|
<domain includeSubdomains="true">10.0.2.2</domain>
|
||||||
<!-- Onion services -->
|
<!-- Onion services -->
|
||||||
<domain includeSubdomains="true">onion</domain>
|
<domain includeSubdomains="true">onion</domain>
|
||||||
|
|
||||||
|
<!-- Domains that are used for LANs -->
|
||||||
|
<!-- These are IANA recognized special use domain names, see https://www.iana.org/assignments/special-use-domain-names/special-use-domain-names.xhtml -->
|
||||||
|
<domain includeSubdomains="true">home.arpa</domain>
|
||||||
|
<domain includeSubdomains="true">local</domain> <!-- Note this has been reserved for use with mDNS -->
|
||||||
|
<domain includeSubdomains="true">test</domain>
|
||||||
|
<!-- These are observed in the wild either by convention or RFCs that have not been accepted, and are not currently TLDs -->
|
||||||
|
<domain includeSubdomains="true">home</domain>
|
||||||
|
<domain includeSubdomains="true">lan</domain>
|
||||||
|
<domain includeSubdomains="true">localdomain</domain>
|
||||||
</domain-config>
|
</domain-config>
|
||||||
|
|
||||||
<debug-overrides>
|
<debug-overrides>
|
||||||
|
|
Loading…
Reference in New Issue