Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

t2hproxy.xinetd 697B

1234567891011121314151617181920212223242526272829
  1. # Description: tftp to http proxy
  2. # A sample config file for xinetd, edit and put in /etc/xinetd.d
  3. # then killall -HUP xinetd, or restart xinetd
  4. service t2hproxy
  5. {
  6. type = UNLISTED
  7. id = t2hproxy
  8. socket_type = dgram
  9. protocol = udp
  10. #
  11. # The pathname to where you have installed it
  12. #
  13. server = /usr/local/sbin/t2hproxy.pl
  14. #
  15. # If your filenames don't start with /, then the trailing
  16. # slash is needed
  17. #
  18. server_args = --prefix http://localhost/
  19. #
  20. # --proxy http://proxyhost:3128/ can also be appended
  21. #
  22. log_type = FILE /var/log/t2hproxy.log
  23. user = nobody
  24. wait = yes
  25. instances = 10
  26. disable = no
  27. port = 69
  28. }