mirror of https://github.com/deniscerri/ytdlnis
Merge pull request #1312 from error-reporting/error-reporting-bgutils-service-fix-1
network security config fixes to allow bgutils to work v2pull/1323/head
commit
8654618965
@ -1,11 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<network-security-config>
|
||||
<!-- Keep HTTPS mandatory for standard network traffic -->
|
||||
<base-config cleartextTrafficPermitted="false" />
|
||||
|
||||
<base-config
|
||||
cleartextTrafficPermitted="false">
|
||||
|
||||
<!-- Grant cleartext HTTP permission ONLY for local server loopbacks -->
|
||||
<domain-config cleartextTrafficPermitted="true">
|
||||
<domain includeSubdomains="true">127.0.0.1</domain>
|
||||
<domain includeSubdomains="true">localhost</domain>
|
||||
<domain-config
|
||||
cleartextTrafficPermitted="true">
|
||||
<domain
|
||||
includeSubdomains="true">127.0.0.1</domain>
|
||||
<domain
|
||||
includeSubdomains="true">localhost</domain>
|
||||
</domain-config>
|
||||
</network-security-config>
|
||||
</base-config>
|
||||
</network-security-config>
|
||||
|
||||
Loading…
Reference in New Issue