tang.README.Debian 519 B

123456789101112131415161718192021222324
  1. Changing default listening port
  2. ===============================
  3. The default listening port for the tangd service is 80, the usual HTTP
  4. port. If this causes a collision with other services, use
  5. systemctl edit tangd.socket
  6. to create an override.
  7. To activate any changes:
  8. systemctl restart tangd.socket
  9. As an example, the following content will
  10. * disable listening on port 80
  11. * enable listening on port 81 instead
  12. [Socket]
  13. ListenStream=
  14. ListenStream=81
  15. See systemd.socket(5) for more options.