35天前
Open Terminal and run:
sudo pico /etc/hosts
Enter your user password when prompted.
Add the blocking entry
Using the arrow keys, move your cursor to the end of the 127.0.0.1 localhost line and press Enter to create a new line. Then type:
127.0.0.1 us-central1-cindori-backend.cloudfunctions.net
Your file should look like this:
127.0.0.1 localhost
127.0.0.1 us-central1-cindori-backend.cloudfunctions.net
255.255.255.255 broadcasthost
::1 localhost
Save and exit
Press Ctrl + O to save
Press Enter to confirm the filename
Press Ctrl + X to exit the editor
Flush the DNS cache
Run this command in Terminal to apply the changes immediately:
sudo dscacheutil -flushcache; sudo killall -HUP mDNSResponder
