config.sample.sh 681 B

1234567891011121314151617
  1. #!/usr/bin/env bash
  2. # How many vpn configs should be available to connect to.
  3. ovpn_count=5
  4. # After how many hours should the VPN data be considered stale.
  5. # VPN Gate servers get added or removed all the time. When old ones get removed
  6. # it gives you poor performance if they're in use. To remedy this, newer VPN
  7. # connection data should be downloaded and used instead. This sets the time in
  8. # hours when the last downloaded data should be considered old and a latest
  9. # version should be suggested to be downloaded and used. Currently this is done
  10. # when ./fetch.sh is run.
  11. stale_threshold_hours=6
  12. # If set to true, update stale files without asking.
  13. auto_update_when_stale=true