Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for DNS #2214

Open
wants to merge 25 commits into
base: py3
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
fd11d4f
Add support for DNS
filips123 Sep 28, 2019
586f2dd
Add plugin description for Zeroname
filips123 Sep 28, 2019
08b84a9
Install plugin dependencies in CI
filips123 Sep 30, 2019
79759a3
Install plugin dependencies in Docker and Vagrant
filips123 Sep 30, 2019
060c66a
Use DNSPython temporary fork until PR is merged
filips123 Oct 1, 2019
476f612
Update DNSLink to allow Python 3.4
filips123 Oct 1, 2019
b17a365
Use hard-coded commit hash for DNSPython
filips123 Oct 1, 2019
460a103
Resolve requested changes
filips123 Oct 1, 2019
66516c0
Remove trailing commas
filips123 Oct 1, 2019
649cd90
Remove UiRequestPlugin from DNS plugin
filips123 Oct 16, 2019
a22b074
Merge branch 'py3' of https://github.com/HelloZeroNet/ZeroNet into py3
filips123 Oct 16, 2019
9104f42
Merge branch 'py3' of https://github.com/HelloZeroNet/ZeroNet into dns
filips123 Oct 29, 2019
2caf10b
Update DNSPython
filips123 Oct 29, 2019
1c099d5
Add wrapperInfo command
purplesyringa Oct 29, 2019
bcbd27e
Always support transparent proxies (including classic DNS)
purplesyringa Oct 29, 2019
071f1c6
Bundle plugin dependencies along source code
filips123 Oct 31, 2019
e679f81
Update dependencies
filips123 Dec 14, 2019
db3f586
Update dependencies
filips123 Feb 3, 2020
0bda4b4
Requests with `HOST` in `ui_host` shouldn't be proxy requests
filips123 Feb 21, 2020
1fe1e06
Also check if `HOST` is in `ui_host` before changing route path
filips123 Feb 21, 2020
633aaea
Fix checking for UI host where config is not set
filips123 Feb 22, 2020
c9883a1
Allow setting custom WS URL for proxy requests
filips123 Feb 22, 2020
5cff378
Merge branch 'py3' into dns
filips123 Apr 7, 2020
4b3e8cd
Install plugin dependencies in GitHub Actions
filips123 Apr 7, 2020
2078a48
Replace SecureDNS and Dnswarden with LibreDNS
filips123 Apr 21, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove trailing commas
  • Loading branch information
filips123 committed Oct 1, 2019
commit 66516c0be42f1c17e1bc47ce763c070104c448f8
2 changes: 1 addition & 1 deletion plugins/DNS/ConfigPlugin.py
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ def createArguments(self):
'https://doh-jp.blahdns.com/dns-query',
'https://doh-ch.blahdns.com/dns-query',

'https://doh.dnswarden.com/uncensored',
'https://doh.dnswarden.com/uncensored'
]

group = self.parser.add_argument_group('DNS plugin')
2 changes: 1 addition & 1 deletion plugins/DNS/SiteManagerPlugin.py
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ def dns_resolver(self):
self._dns_resolver = DNSResolver(
site_manager=self,
nameservers=nameservers,
configure=configure,
configure=configure
)

return self._dns_resolver