You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
520 B

  1. #!/bin/sh
  2. uci batch <<-EOF
  3. set uhttpd.dump1090=uhttpd
  4. set uhttpd.dump1090.listen_http='0.0.0.0:8080 [::]:8080'
  5. set uhttpd.dump1090.home=/usr/share/dump1090
  6. set uhttpd.dump1090.rfc1918_filter=1
  7. set uhttpd.dump1090.max_requests=3
  8. set uhttpd.dump1090.max_connections=100
  9. set uhttpd.dump1090.script_timeout=60
  10. set uhttpd.dump1090.network_timeout=30
  11. set uhttpd.dump1090.http_keepalive=20
  12. set uhttpd.dump1090.tcp_keepalive=1
  13. set uhttpd.dump1090.index_page='index.html index.htm gmap.html'
  14. commit uhttpd
  15. EOF
  16. exit 0