Fixes several small bugs regarding #48

- Proxies are `off` by default so `SHADOWSOCKS_PASSWORD` is not required
- Documentation fixed and clarified
- `PORT_FORWARDING` should be `on` or `off` only now (although it's backward compatible with `false` and `true`)
This commit is contained in:
Quentin McGaw
2019-09-10 09:05:49 -04:00
parent eee538ab52
commit 0d41564f7d
3 changed files with 27 additions and 7 deletions

View File

@@ -476,7 +476,7 @@ fi
# READ FORWARDED PORT
############################################
if [ "$PORT_FORWARDING" == "true" ]; then
if [ "$PORT_FORWARDING" == "on" ]; then
sleep 10 && /portforward.sh &
fi