jeansaad/hotel

View on GitHub
src/daemon/views/proxy-pac.pug

Summary

Maintainability
Test Coverage
.
  // Proxy only *.#{conf.tld} requests to chalet
  // Configuration file can be found in ~/.chalet
  function FindProxyForURL (url, host) {
    if (dnsDomainIs(host, '.#{conf.tld}')) {
      return 'PROXY #{hostname}:#{conf.port}';
    }

    return 'DIRECT';
  }