diff --git a/docs/troubleshooting.mdx b/docs/troubleshooting.mdx index 2f3fed66c..78b7e073e 100644 --- a/docs/troubleshooting.mdx +++ b/docs/troubleshooting.mdx @@ -24,6 +24,12 @@ or for Cloudflare's DNS: ```bash --dns=1.1.1.1 ``` +or for Quad9 DNS: +```bash +--dns=9.9.9.9 +``` + +You can try them all and see which one works for your network. @@ -45,6 +51,16 @@ services: dns: - 1.1.1.1 ``` +or for Quad9's DNS: +```yaml +--- +services: + jellyseerr: + dns: + - 9.9.9.9 +``` + +You can try them all and see which one works for your network. @@ -56,7 +72,7 @@ services: 4. Click on Change adapter settings. 5. Right-click the network interface connected to the internet and select Properties. 6. Select Internet Protocol Version 4 (TCP/IPv4) and click Properties. -7. Select Use the following DNS server addresses and enter `8.8.8.8` for Google's DNS or `1.1.1.1` for Cloudflare's DNS. +7. Select Use the following DNS server addresses and enter `8.8.8.8` for Google's DNS or `1.1.1.1` for Cloudflare's DNS or `9.9.9.9` for Quad9's DNS. @@ -73,6 +89,10 @@ services: ```bash nameserver 1.1.1.1 ``` + or for Quad9's DNS: + ```bash + nameserver 9.9.9.9 + ``` @@ -81,7 +101,7 @@ services: Sometimes there are configuration issues with IPV6 that prevent the hostname resolution from working correctly. -You can try to force the resolution to use IPV4 first by setting the `FORCE_IPV4_FIRST` environment variable to `true`: +You can try to force the resolution to use IPV4 first by going to `Settings > Networking > Advanced Networking` and enabling `Force IPv4 Resolution First` setting and restarting. You can also add the environment variable, `FORCE_IPV4_FIRST=true`: