import telebot
from settings import *
bot = telebot.TeleBot(TOKEN)
@bot.message_handler(commands=["Ваша команда"])
def handle_start(message): #Функция по обработке вашей команды
#Тут код который будет принимать строку например с вашим IP
# Далее будет подключатся к серваку,выполнять что нужно
bot.send_message(message.from_user.id, "Тут будет ответ который нужно будет вернуть пользователю" )
bot.polling(none_stop=True, interval=0)
server {
listen 80 default_server;
root /var/www/html;
index index.php index.html index.htm index.nginx-debian.html;
server_name localhost 127.0.0.1;
access_log /var/log/nginx/access.log;
location / {
proxy_pass 127.0.0.1:80;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_connect_timeout 120;
proxy_send_timeout 120;
proxy_read_timeout 180;
try_files $uri $uri/ =404;
}
location ~*\.(jpg|jpeg|gif|png|ico|css|bmp|swf|js|html|txt)${
root /var/www/html
}
}