Improve local DNS with Spin #102
jaydrogers
started this conversation in
Ideas
Replies: 1 comment
-
|
I've found macOS instructions for installing it and configuring it for # install dnsmasq
brew install dnsmasq
# create the configuration and point *.test to 127.0.0.1
mkdir -pv $(brew --prefix)/etc/
echo 'address=/.test/127.0.0.1' >> $(brew --prefix)/etc/dnsmasq.conf
# create resolver for *.test domains
sudo mkdir -p /etc/resolver
sudo bash -c 'echo "nameserver 127.0.0.1" > /etc/resolver/test
# start the dnsmasq service, will also be added to system startup
sudo brew services start dnsmasq |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Problem
Related threads
https://discord.com/channels/910287105714954251/910299290230997003/1195043928790007878
Proposed Solution
Beta Was this translation helpful? Give feedback.
All reactions