pyTelegramBotAPI/examples/multibot/nginx_conf.conf

8 lines
127 B
Plaintext

server {
server_name your_domain.com;
location /telegram_webhook/ {
proxy_pass http://localhost:3500;
}
}