add artegoser instance

This commit is contained in:
Artemy 2023-09-11 11:44:24 +03:00
parent a889432d9e
commit 6c4bfcc7d2
3 changed files with 16 additions and 8 deletions

View file

@ -1,7 +1,8 @@
# instances
# instances
Instances of TXTDot proxies
| Name | Base URL | Secure |
| ------------------------ | --------------------- | ------ |
| Official TXTDot instance | <https://txt.dc09.ru> | true |
| Name | Base URL | Secure |
| ---- | -------- | ------ |
| Official TXTDot instance | <https://txt.dc09.ru> | true |
| Official TXTDot instance by artegoser | <https://txt.artegoser.ru> | true |

View file

@ -10,9 +10,11 @@ Instances of TXTDot proxies
| Name | Base URL | Secure |
| ---- | -------- | ------ |
${instances.map(
(instance) =>
`| ${instance.name} | <${instance.baseUrl}> | ${instance.secure} |`
)}
${instances
.map(
(instance) =>
`| ${instance.name} | <${instance.baseUrl}> | ${instance.secure} |`
)
.join("\n")}
`
);

View file

@ -3,5 +3,10 @@
"name": "Official TXTDot instance",
"baseUrl": "https://txt.dc09.ru",
"secure": true
},
{
"name": "Official TXTDot instance by artegoser",
"baseUrl": "https://txt.artegoser.ru",
"secure": true
}
]