mirror of
https://github.com/shadowsocks/shadowsocks-rust.git
synced 2026-02-09 10:09:17 +08:00
22 lines
531 B
Desktop File
22 lines
531 B
Desktop File
# This file is part of shadowsocks-rust.
|
|
#
|
|
# This file is default for Debian packaging. See also
|
|
# /etc/default/shadowsocks-rust for environment variables.
|
|
|
|
[Unit]
|
|
Description=Shadowsocks-rust Default Server Service
|
|
Documentation=https://github.com/shadowsocks/shadowsocks-rust
|
|
After=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
EnvironmentFile=/etc/default/shadowsocks-rust
|
|
User=nobody
|
|
Group=nogroup
|
|
LimitNOFILE=32768
|
|
ExecStart=/usr/bin/ssserver --log-without-time -c ${CONFFILE} ${DAEMON_ARGS}
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
|