pyTelegramBotAPI/examples/asynchronous_telebot/multibot/nginx_conf.conf

8 lines
127 B
Plaintext
Raw Normal View History

2022-05-11 08:50:33 +03:00
server {
server_name your_domain.com;
location /telegram_webhook/ {
proxy_pass http://localhost:3500;
}
}