integram
integram copied to clipboard
Bot is down
Not responding for /start command. Webhooks don't work:
<html>
<head><title>504 Gateway Time-out</title></head>
<body>
<center><h1>504 Gateway Time-out</h1></center>
<hr><center>nginx/1.17.6</center>
</body>
</html>
I can confirm that bots are not responding.
This robot is sometimes good and sometimes bad.
Yeah, it goes down frequently.
yesterday Integram bot is out of service.
is it down again today?
is it down today? Using a telegram integration
is it down today? Using a telegram integration
Same problem, today the bot is down
yeah today it's down again, facing this issue on the GitLab integration
is it down again @requilence ?
I think that bot is it down again @requilence
Bot is down, wtf? ((
If you have time and budget, I recommend deploy integram to your private server.
Bot has been down for a week now.
Can anyone shere info on how to deploy integram to a private server ? The official documentation is really bad.
I'm about to switch to shell scripts sending messages to api.telegram.org/bot
Can anyone shere info on how to deploy integram to a private server ?
@zerthimon Without docker gave me more headache :vomiting_face:
IMO, using docker is the best way. And the documentation are clear. Maybe for the SSL section you need additional script after ssl cert renewal. copy from let's encrypt dir to docker volume data.
#! /bin/bash -
## Schell script to copy ssl certificate
## from letsencrypt to docker mount dir
letsencrypt_dir=/etc/letsencrypt/live/[your-domain]
docker_mount_dir=/var/lib/docker/volumes/integram_data-mainapp/_data
## check if directory exists
if [[ -d $docker_mount_dir ]]; then
cp --remove-destination $letsencrypt_dir/fullchain.pem $docker_mount_dir/ssl.crt
cp --remove-destination $letsencrypt_dir/privkey.pem $docker_mount_dir/ssl.key
echo "ssl key & cert successfully copied"
fi