requilence / integram

Integrate Telegram into your workflow – Trello, Gitlab, Bitbucket and other bots
https://integram.org
GNU General Public License v3.0
1.54k stars 151 forks source link

Bot is down #114

Open zerthimon opened 3 years ago

zerthimon commented 3 years ago

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>
slavafomin commented 3 years ago

I can confirm that bots are not responding.

niracler commented 3 years ago

This robot is sometimes good and sometimes bad.

zerthimon commented 3 years ago

Yeah, it goes down frequently.

mobintmu commented 2 years ago

yesterday Integram bot is out of service.

ucay commented 2 years ago

is it down again today?

frwellmonalisa commented 2 years ago

is it down today? Using a telegram integration

BrunoGGM commented 2 years ago

is it down today? Using a telegram integration

Same problem, today the bot is down

pararang commented 2 years ago

yeah today it's down again, facing this issue on the GitLab integration

ucay commented 2 years ago

is it down again @requilence ?

mobintmu commented 2 years ago

I think that bot is it down again @requilence

eosemeiko commented 2 years ago

Bot is down, wtf? ((

ucay commented 2 years ago

If you have time and budget, I recommend deploy integram to your private server.

zerthimon commented 2 years ago

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

ucay commented 2 years ago

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