forked from RaspAP/SamplePlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
32 lines (31 loc) · 881 Bytes
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "Socks Proxy",
"version": "v1.0.1-beta",
"description": "A Dante SOCKS v5 proxy server add-on for RaspAP",
"author": "Bill Zimmerman",
"author_uri": "https://github.com/billz",
"plugin_uri": "https://github.com/billz/SocksProxy",
"license": "GPL-3.0",
"namespace": "RaspAP\\Plugins\\SocksProxy",
"configuration": [
{
"source": "config/danted.conf",
"destination": "/etc/danted.conf"
}
],
"default_locale": "en_US",
"dependencies": {
"dante-server": "1.4.2"
},
"icon": "fas fa-socks",
"manifest_version": "1.0",
"sudoers": [
"www-data ALL=(ALL) NOPASSWD:/bin/systemctl * danted.service",
"www-data ALL=(ALL) NOPASSWD:/bin/cat /etc/danted.conf",
"www-data ALL=(ALL) NOPASSWD:/bin/cp /tmp/danted.conf /etc/danted.conf"
],
"user_nonprivileged": {
"name": "danteuser",
"pass": "sockspass"
}
}