Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. # -*- coding: utf-8 -*-
  2.  
  3. # telegram bot api key
  4. tg_key = "КЛЮЧ БОТА ТЕЛЕЖЕНЬКИ"
  5.  
  6. zbx_tg_prefix = "zbxtg" # variable for separating text from script info
  7. #zbx_tg_tmp_dir = "/var/tmp/" + zbx_tg_prefix # directory for saving caches, uids, cookies, etc.
  8. zbx_tg_tmp_dir = "/opt/scripts"
  9. zbx_tg_signature = False
  10.  
  11. zbx_server = "http://192.168.41.9" # zabbix server full url
  12. zbx_api_user = "telega"
  13. zbx_api_pass = "telega"
  14. zbx_api_verify = True # True - do not ignore self signed certificates, False - ignore
  15.  
  16. proxy_to_zbx = None
  17. proxy_to_tg = "socks5://werwolf:111994@zabugor.itrus.su:1080"
  18.  
  19. #proxy_to_zbx = "proxy.local:3128"
  20. #proxy_to_tg = "proxy.local:3128"
  21.  
  22. emoji_map = {
  23. "ok": "✅",
  24. "problem": "❗",
  25. "info": "ℹ️",
  26. "warning": "⚠️",
  27. "disaster": "❌",
  28. "bomb": "💣",
  29. "fire": "🔥",
  30. "hankey": "💩",
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement