mirror of
https://github.com/EtherDream/jsproxy
synced 2024-11-22 09:58:46 +00:00
13 lines
240 B
Bash
13 lines
240 B
Bash
|
#!/usr/bin/env sh
|
||
|
|
||
|
CDN=https://cdn.jsdelivr.net/gh/etherdream/jsproxy-bin@master/dist/
|
||
|
DST=/home/jsproxy/setup.sh
|
||
|
|
||
|
|
||
|
groupadd nobody
|
||
|
useradd jsproxy -g nobody --create-home
|
||
|
|
||
|
curl -s "$CDN/setup.sh" -o $DST
|
||
|
chmod +x $DST
|
||
|
|
||
|
su - jsproxy -c $DST
|