mirror of
https://github.com/wiz0u/WTelegramClient.git
synced 2025-12-06 06:52:01 +01:00
moved VPS doc to FAQ
This commit is contained in:
parent
63faf9a070
commit
2af9763a81
2
.github/dev.yml
vendored
2
.github/dev.yml
vendored
|
|
@ -2,7 +2,7 @@ pr: none
|
|||
trigger:
|
||||
- master
|
||||
|
||||
name: 2.2.1-dev.$(Rev:r)
|
||||
name: 2.2.2-dev.$(Rev:r)
|
||||
|
||||
pool:
|
||||
vmImage: ubuntu-latest
|
||||
|
|
|
|||
|
|
@ -404,15 +404,6 @@ var messages = await client.Messages_Search<InputMessagesFilterPinned>(chat, lim
|
|||
foreach (var msg in messages.Messages)
|
||||
await client.Messages_SendReaction(chat, msg.ID, reaction);
|
||||
```
|
||||
<a name="heroku"></a><a name="vps"></a><a name="host"></a>
|
||||
### How to host my userbot online?
|
||||
|
||||
If you need your userbot to run 24/7, you would typically design your userbot as a Console program, compiled for Linux or Windows,
|
||||
and hosted online on any [VPS Hosting](https://www.google.com/search?q=vps+hosting) (Virtual Private Server).
|
||||
Pure WebApp hosts might not be adequate as they will recycle (stop) your app if there is no incoming HTTP requests.
|
||||
|
||||
There are many cheap VPS Hosting offers available, and some even have free tier, like Heroku:
|
||||
See [Examples/Program_Heroku.cs](Examples/Program_Heroku.cs) for such an implementation and the steps to host/deploy it.
|
||||
|
||||
<a name="database"></a><a name="sessionStore"></a><a name="customStore"></a>
|
||||
### Store session data to database or elsewhere, instead of files
|
||||
|
|
|
|||
10
FAQ.md
10
FAQ.md
|
|
@ -212,6 +212,16 @@ In particular, it will detect and handle automatically the various login cases/p
|
|||
|
||||
Contrary to TLSharp, WTelegram supports MTProto v2.0, protocol security checks, transport obfuscation, MTProto Proxy, real-time updates, multiple DC connections, API documentation in Intellisense...
|
||||
|
||||
<a name="heroku"></a><a name="vps"></a><a name="host"></a>
|
||||
#### 12. How to host my userbot online?
|
||||
|
||||
If you need your userbot to run 24/7, you would typically design your userbot as a Console program, compiled for Linux or Windows,
|
||||
and hosted online on any [VPS Hosting](https://www.google.com/search?q=vps+hosting) (Virtual Private Server).
|
||||
Pure WebApp hosts might not be adequate as they will recycle (stop) your app if there is no incoming HTTP requests.
|
||||
|
||||
There are many cheap VPS Hosting offers available, and some even have free tier, like Heroku:
|
||||
See [Examples/Program_Heroku.cs](Examples/Program_Heroku.cs) for such an implementation and the steps to host/deploy it.
|
||||
|
||||
<a name="troubleshoot"></a>
|
||||
## Troubleshooting guide
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue