tuntox.service 415 B

1234567891011121314151617181920212223
  1. # Systemd service file
  2. [Unit]
  3. Description=Tuntox - TCP tunnel over Tox protocol
  4. After=network.target
  5. [Service]
  6. Type=simple
  7. # Copy the tuntox binary to /usr/bin first
  8. ExecStart=/usr/bin/tuntox
  9. Restart=on-failure
  10. # Change this to your user and group for increased security
  11. # Make sure this user/group has access to /etc/tuntox
  12. #User=proxy
  13. #Group=proxy
  14. [Install]
  15. WantedBy=multi-user.target
  16. Alias=tuntox.service