mirror of
https://github.com/TxtDot/instances.git
synced 2024-11-23 05:16:23 +03:00
add bloat cat instance
This commit is contained in:
parent
6c4bfcc7d2
commit
4b93e55c56
3 changed files with 15 additions and 9 deletions
11
README.md
11
README.md
|
@ -1,8 +1,9 @@
|
|||
# instances
|
||||
# instances
|
||||
|
||||
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 |
|
||||
|
|
4
index.js
4
index.js
|
@ -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")}
|
||||
`
|
||||
|
|
|
@ -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
|
||||
}
|
||||
]
|
||||
|
|
Loading…
Add table
Reference in a new issue