Created
September 5, 2021 22:22
-
-
Save xanoni/555bdb9b479c08a886cf5cd2b6bb120e to your computer and use it in GitHub Desktop.
Running MyMonero over Tor (MacOS)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env bash -ex | |
## Please note that MyMonero sucks, avoid it unless you have no better alternative | |
SCRIPT_DIR="$(dirname $(realpath $0))" | |
WRAPPER_CMD="/usr/local/bin/torsocks" | |
export HTTP_PROXY="127.0.0.1:8118" | |
export HTTPS_PROXY="${HTTP_PROXY}" | |
${WRAPPER_CMD} ${SCRIPT_DIR}/_files/MyMonero.app/Contents/MacOS/MyMonero --proxy-server="${HTTPS_PROXY}" & |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment