add bloat cat instance

This commit is contained in:
Artemy 2024-01-07 19:14:18 +03:00
parent 6c4bfcc7d2
commit 4b93e55c56
3 changed files with 15 additions and 9 deletions

View file

@ -2,7 +2,8 @@
Instances of TXTDot proxies
| Name | Base URL | Secure |
| ---- | -------- | ------ |
| Official TXTDot instance | <https://txt.dc09.ru> | true |
| Official TXTDot instance by artegoser | <https://txt.artegoser.ru> | true |
| Name | Base URL | HTTPS |
| ------------------------------------- | -------------------------- | ----- |
| Official TXTDot instance | <https://txt.dc09.ru> | true |
| Official TXTDot instance by artegoser | <https://txt.artegoser.ru> | true |
| Instance by bloatcat | <https://txt.bloat.cat> | true |

View file

@ -8,12 +8,12 @@ fs.writeFileSync(
Instances of TXTDot proxies
| Name | Base URL | Secure |
| Name | Base URL | HTTPS |
| ---- | -------- | ------ |
${instances
.map(
(instance) =>
`| ${instance.name} | <${instance.baseUrl}> | ${instance.secure} |`
`| ${instance.name} | <${instance.baseUrl}> | ${instance.HTTPS} |`
)
.join("\n")}
`

View file

@ -2,11 +2,16 @@
{
"name": "Official TXTDot instance",
"baseUrl": "https://txt.dc09.ru",
"secure": true
"HTTPS": true
},
{
"name": "Official TXTDot instance by artegoser",
"baseUrl": "https://txt.artegoser.ru",
"secure": true
"HTTPS": true
},
{
"name": "Instance by bloatcat",
"baseUrl": "https://txt.bloat.cat",
"HTTPS": true
}
]