hs-025 403 B

12345678910
  1. # By default, Authorities are not configured as exits
  2. Authority = Node(tag="a", authority=1, relay=1, torrc="authority.tmpl")
  3. NonExitRelay = Node(tag="r", relay=1, torrc="relay-non-exit.tmpl")
  4. Client = Node(tag="c", client=1, torrc="client.tmpl")
  5. HS = Node(tag="h", hs=1, torrc="hs.tmpl")
  6. NODES = Authority.getN(4) + NonExitRelay.getN(10) + \
  7. Client.getN(6) + HS.getN(5)
  8. ConfigureNodes(NODES)