shadowsocks-rust
shadowsocks-rust is a rust port of shadowsocks.
shadowsocks is a lightweight secured SOCKS5 proxy for embedded devices and low-end boxes.
- Developed at server:proxy
- Sources inherited from project openSUSE:Factory
-
4
derived packages
- Download package
-
Checkout Package
osc -A https://api.opensuse.org checkout openSUSE:Leap:16.0:FactoryCandidates/shadowsocks-rust && cd $_
- Create Badge
Refresh
Refresh
Source Files
Filename | Size | Changed |
---|---|---|
_constraints | 0000000754 754 Bytes | |
shadowsocks-rust-1.16.2.tar.gz | 0000303838 297 KB | |
shadowsocks-rust-client.service | 0000000745 745 Bytes | |
shadowsocks-rust-manager.service | 0000000749 749 Bytes | |
shadowsocks-rust-server.service | 0000000746 746 Bytes | |
shadowsocks-rust.changes | 0000005555 5.42 KB | |
shadowsocks-rust.json | 0000000272 272 Bytes | |
shadowsocks-rust.spec | 0000003631 3.55 KB | |
vendor.tar.gz | 0076011000 72.5 MB |
Revision 4 (latest revision is 10)
Ana Guerrero (anag+factory)
accepted
request 1120484
from
Hillwood Yang (hillwood)
(revision 4)
- Fix boo#1216372 and boo#1216373, run systemd service as a dedicated user and group
Comments 1
Hi,
systemctl start shadowsocks-rust-server.service
failed due to permission denied access to/etc/shadowsocks/shadowsocks-rust.json
.The service is running as
shadowsocks:shadowsocks
, and the directory/etc/shadowsocks
has permission 640 with ownerroot:shadowsocks
. Soshadowsocks
group cannot access files in/etc/shadowsocks
directory.chmod g+x /etc/shadowsocks
solves this issue.