Jianhui Zhao 6727273dbb Add issue template
Signed-off-by: Jianhui Zhao <zhaojh329@gmail.com>
2021-02-25 20:33:17 +08:00
2021-02-25 20:33:17 +08:00
2021-01-13 23:02:35 +08:00
2021-02-02 19:30:28 +08:00
2021-02-22 20:01:26 +08:00
2021-01-26 22:50:39 +08:00
2021-01-26 22:50:39 +08:00
2021-02-22 22:47:28 +08:00
2018-09-08 17:16:04 +08:00
2018-01-17 21:31:35 +08:00
2020-03-15 20:35:36 +08:00
2021-02-18 23:09:38 +08:00
2021-02-18 23:09:38 +08:00
2021-01-26 22:50:39 +08:00
2018-03-14 22:37:04 +08:00
2018-03-14 22:37:04 +08:00
2019-11-04 16:33:04 +08:00
2020-02-10 21:05:46 +08:00
2021-02-20 23:02:11 +08:00
2021-02-20 23:02:11 +08:00
2021-02-20 23:02:11 +08:00
2019-09-03 14:57:16 +08:00
2021-02-19 19:14:43 +08:00
2021-02-22 22:47:28 +08:00
2021-02-22 22:47:28 +08:00
2021-02-02 19:30:28 +08:00
2021-01-27 15:29:03 +08:00

rttys(中文)

license PRs Welcome Issue Welcome Release Version Build Status

This is the server program of rtty

Usage

download the pre-built release binary from Release page according to your os and arch or compile it by yourself.

git clone https://github.com/zhaojh329/rttys

cd frontend
npm install
npm run build
cd ..

./build.sh linux amd64

Authorization

Token

Generate a token

$ rttys token
Please set a password:******
Your token is: 34762d07637276694b938d23f10d7164

Use token

$ rttys run -t 34762d07637276694b938d23f10d7164

mTLS

You can enable mTLS by specifying device CA storage (valid file) in config file or from CLI (variable ssl-cacert). Device(s) without valid CA in storage will be disconnected in TLS handshake.

Running as a Linux service

Move the rttys binary into /usr/local/bin/

sudo mv rttys /usr/local/bin/

Copy the config file to /etc/rttys/

sudo mkdir /etc/rttys
sudo cp rttys.conf /etc/rttys/

Create a systemd unit file: /etc/systemd/system/rttys.service

[Unit]
Description=rttys
After=network.target

[Service]
ExecStart=/usr/local/bin/rttys run -c /etc/rttys/rttys.conf
TimeoutStopSec=5s

[Install]
WantedBy=multi-user.target

To start the service for the first time, do the usual systemctl dance:

sudo systemctl daemon-reload
sudo systemctl enable rttys
sudo systemctl start rttys

You can stop the service with:

sudo systemctl stop rttys

Contributing

If you would like to help making rttys better, see the CONTRIBUTING.md file.

S
Description
⚠️ ARCHIVED: Original GitHub repository no longer exists. Preserved as backup on 2026-02-27T09:20:46.591Z
Readme MIT 71 MiB
Languages
GO 49.1%
Vue 47.9%
Shell 2.6%
Dockerfile 0.4%