Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
# dhcpd.conf
#
#
# option definitions common to all supported networks...
option domain-name "swapsawe.com";
option domain-name-servers 82.216.140.12;
default-lease-time 600;
max-lease-time 7200;
#Declare the proxy file here.
option wpad-url code 252 = text;
option wpad-url "http://192.168.99.123/proxy.pac\n";
# If this DHCP server is the official DHCP server for the local
# network, the authoritative directive should be uncommented.
authoritative;
# ad-hoc DNS update scheme - set to "none" to disable dynamic DNS updates and ad-hoc to enable.
ddns-update-style none;
# Use this to send dhcp log messages to a different log file (you also
# have to hack syslog.conf to complete the redirection).
log-facility local7;
# A slightly different configuration for an internal subnet.
subnet 192.168.99.0 netmask 255.255.255.0 {
range 192.168.99.200 192.168.99.210;
option routers 192.168.99.1;
option broadcast-address 192.168.99.255;
default-lease-time 600;
max-lease-time 7200;
}
option wpad-url code 252 = text;
option wpad-url "http://192.168.99.123/proxy.pac\n";
function FindProxyForURL(url, host)
{
return "PROXY 192.168.99.123:5080";
}
/usr/local/sbin/dhcpd
Tools Menu-> Internet Options-> Connection-> LAN Settings