dkforest

A forum and chat platform (onion)
git clone https://git.dasho.dev/n0tr1v/dkforest.git
Log | Files | Refs | LICENSE

torchess.gohtml (1781B)


      1 {{ define "title" }}dkf - torchess{{ end }}
      2 
      3 {{ define "content" }}
      4 
      5 <div class="container">
      6     <div>
      7 
      8         <h3>TorChess p2p chess over tor</h3>
      9         <div class="mb-3"><time datetime="2022-03-22 00:00">Mar 22, 2022</time></div>
     10 
     11         <p class="mt-5 mb-4">
     12             To host a room, you need to ensure that "tor control" is running on port 9051 (<code>ControlPort 9051</code> in your torrc file)<br />
     13             To join a room, you have to ensure that "tor proxy" is running on port 9050 (<code>SOCKSPort 9050</code> in your torrc file)<br />
     14         </p>
     15 
     16         <p class="mt-5 mb-4">
     17             This application is open source on
     18             <a href="http://git.dkforestseeaaq2dqz2uflmlsybvnq2irzn4ygyvu53oazyorednviid.onion/n0tr1v/torchess" rel="noopener noreferrer" target="_blank">this git server</a>
     19             <br />
     20         </p>
     21 
     22         <p>
     23             <a href="/torchess/downloads">Download pre-build official application</a>
     24         </p>
     25 
     26         <img src="/public/img/torchess/1.png" alt="" />
     27 
     28         <h3 class="mt-3">Whonix</h3>
     29 
     30         <p>w
     31             If you are getting <code>failed to get service id: 510 Command filtered</code> error on whonix<br />
     32             You need to set a profile for onion-grater:<br />
     33         </p>
     34 
     35         <pre><code>---
     36 - exe-paths:
     37     - '*'
     38   users:
     39     - '*'
     40   hosts:
     41     - '*'
     42   commands:
     43     ADD_ONION:
     44       - pattern:     'NEW:BEST Flags=DiscardPK Port=80,6790 Port=81,6789'
     45         replacement: 'NEW:BEST Flags=DiscardPK Port=80,{client-address}:6790 Port=81,{client-address}:6789'
     46     DEL_ONION:
     47       - '.+'</code></pre>
     48 
     49         <p>
     50             You also need to start the application with <code>--app-ip 0.0.0.0</code>
     51         </p>
     52 
     53         <div style="height: 100px;"></div>
     54     </div>
     55 </div>
     56 
     57 {{ end }}