GitHub Pages https/www Redirect

What worked for me: Change your custom domain to be prefixed with www., like this: Save the settings and wait until www.example.com resolves and works. Remove the www. prefix and save again. Wait for browser and DNS caches to invalidate. All combinations should lead to https://example.com/ and no SSL error should appear.

DNS not working within docker containers when host uses dnsmasq and Google’s DNS server are firewalled?

A clean solution is to configure docker+dnsmasq so than DNS requests from the docker container are forwarded to the dnsmasq daemon running on the host. For that, you need to configure dnsmasq to listen to the network interface used by docker, by adding a file /etc/NetworkManager/dnsmasq.d/docker-bridge.conf: $ cat /etc/NetworkManager/dnsmasq.d/docker-bridge.conf listen-address=172.17.0.1 Then restart network manager to … Read more

Meaning of the five fields of the ANSWER SECTION in dig query

Reference: http://www.zytrax.com/books/dns/ch15/#answer and http://www.zytrax.com/books/dns/ch8/a.html The first field is the NAME: The domain name being returned The second field (108 in your example) is the TTL in seconds. IN is the CLASS. Here, IN stands for Internet. A is the TYPE. Here, A stands for mapping a domain name to an IPv4 address. The last field … Read more