site.conf.sample 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #
  2. # local.conf covers user settings, site.conf covers site specific information
  3. # such as proxy server addresses and optionally any shared download location
  4. #
  5. # SITE_CONF_VERSION is increased each time build/conf/site.conf
  6. # changes incompatibly
  7. SCONF_VERSION = "1"
  8. # Uncomment to cause CVS to use the proxy host specified
  9. #CVS_PROXY_HOST = "proxy.example.com"
  10. #CVS_PROXY_PORT = "81"
  11. # For svn, you need to create ~/.subversion/servers containing:
  12. #[global]
  13. #http-proxy-host = proxy.example.com
  14. #http-proxy-port = 81
  15. #
  16. # Uncomment to cause git to use the proxy host specificed
  17. # although this only works for http
  18. #GIT_PROXY_HOST = "proxy.example.com"
  19. #GIT_PROXY_PORT = "81"
  20. #export GIT_PROXY_COMMAND = "${COREBASE}/scripts/oe-git-proxy-command"
  21. # GIT_PROXY_IGNORE_* lines define hosts which do not require a proxy to access
  22. #GIT_CORE_CONFIG = "Yes"
  23. #GIT_PROXY_IGNORE_1 = "host.server.com"
  24. #GIT_PROXY_IGNORE_2 = "another.server.com"
  25. # If SOCKS is available run the following command to comple a simple transport
  26. # gcc scripts/oe-git-proxy-socks.c -o oe-git-proxy-socks
  27. # and then share that binary somewhere in PATH, then use the following settings
  28. #GIT_PROXY_HOST = "proxy.example.com"
  29. #GIT_PROXY_PORT = "81"
  30. #export GIT_PROXY_COMMAND = "${COREBASE}/scripts/oe-git-proxy-socks-command"
  31. # Uncomment this to use a shared download directory
  32. #DL_DIR = "/some/shared/download/directory/"