Private exit node? #2042
-
How can someone run a private exit node? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
our docs are still kind of sparse but docs on setting up an exit can be found here: to make it private you can either not share the .loki address and/or require an auth code in order to access. to make your .loki address require an auth code use the following lokinet config snippet:
the file at passwords are using standard format done by a tool in |
Beta Was this translation helpful? Give feedback.
our docs are still kind of sparse but docs on setting up an exit can be found here:
https://github.com/oxen-io/lokinet/blob/dev/docs/exit-setup.md
to make it private you can either not share the .loki address and/or require an auth code in order to access.
to make your .loki address require an auth code use the following lokinet config snippet:
the file at
/var/lib/lokinet/auth.txt
will be checked for hashed passwords each time you try to authenticate with the .loki address. (make sure that file is readable by the_lokinet
user)passwords are using standard format done by a tool in
apache2-utils
calledmkpasswd
which will prompt you for a passw…