Sfoglia il codice sorgente

Separate rss documentation

Bob Mottram 8 anni fa
parent
commit
f10683338a
6 ha cambiato i file con 569 aggiunte e 254 eliminazioni
  1. 76
    0
      doc/EN/app_rss.org
  2. 1
    0
      doc/EN/apps.org
  3. 1
    50
      doc/EN/usage.org
  4. 379
    0
      website/EN/app_rss.html
  5. 71
    68
      website/EN/apps.html
  6. 41
    136
      website/EN/usage.html

+ 76
- 0
doc/EN/app_rss.org Vedi File

@@ -0,0 +1,76 @@
1
+#+TITLE:
2
+#+AUTHOR: Bob Mottram
3
+#+EMAIL: bob@freedombone.net
4
+#+KEYWORDS: Freedombone, RSS
5
+#+DESCRIPTION: How to use the RSS reader
6
+#+OPTIONS: ^:nil toc:nil
7
+#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="freedombone.css" />
8
+
9
+#+BEGIN_CENTER
10
+[[file:images/logo.png]]
11
+#+END_CENTER
12
+
13
+#+BEGIN_EXPORT html
14
+<center>
15
+<h1>RSS Reader</h1>
16
+</center>
17
+#+END_EXPORT
18
+
19
+The way that RSS reading is set up on Freedombone gives you strong reading privacy. Not only is there onion routing between you and the server but also between the server and the source of the RSS feed. The only down side is that many RSS feeds are still http only, and so could be vulnerable to injection attacks, but it's expected that more of this will go to https in the foreseeable future due to a combination of growing recognition of security issues and systems like Let's Encrypt which make obtaining certificates much easier.
20
+
21
+#+BEGIN_CENTER
22
+[[file:images/rss_reader_mobile.jpg]]
23
+#+END_CENTER
24
+
25
+* Finding the onion address
26
+See the control panel for the RSS reader onion address.
27
+
28
+#+BEGIN_SRC bash
29
+ssh username@domainname -p 2222
30
+#+END_SRC
31
+
32
+Select *Administrator controls* then select the *About* screen.
33
+
34
+The RSS reader is accessible only via an onion address. This provides a reasonable degree of reading privacy, making it difficult for passive adversaries such as governments, corporations or criminals to create lists of sites which you are subscribed to.
35
+
36
+To set up the system open http://rss_reader_onion_address and log in with username *admin* and the password obtained either at the beginning of the install or from the README file in your home directory. You can then select the *Actions* menu and begin adding your feeds.
37
+
38
+* On mobile
39
+To access the RSS reader from a mobile device you can install a Tor compatible browser such as OrFox, then use the mobile onion address shown on the *About* screen of the *Administrator controls*. Remember to add the site to the NoScript whitelist, and you may also need to turn HTTPS Everywhere off.
40
+
41
+#+BEGIN_QUOTE
42
+A note for the paranoid is that on mobile devices you get redirected to a different onion address which is specially set up for the mobile interface, so don't be alarmed that it looks like your connection is being hijacked.
43
+#+END_QUOTE
44
+* With Emacs
45
+If you are an Emacs user then you can also read your RSS feeds via the [[https://github.com/dk87/avandu][Avandu]] mode.
46
+
47
+Add the following to your configuration, changing the address and password as appropriate.
48
+
49
+#+begin_src emacs-lisp :tangle no
50
+(setq avandu-tt-rss-api-url "http://rss_reader_onion_address/api/"
51
+      avandu-user "admin"
52
+      avandu-password "mypassword")
53
+#+end_src
54
+
55
+If you don't already have Emacs set up to route through Tor then also add the following:
56
+
57
+#+begin_src emacs-lisp :tangle no
58
+(setq socks-noproxy '("localhost"))
59
+(require 'socks)
60
+(require 'tls)
61
+(setq socks-server (list "Tor socks" "localhost" 9050 5))
62
+#+end_src
63
+
64
+And ensure that the Tor daemon is installed. On a debian based system:
65
+
66
+#+begin_src bash :tangle no
67
+sudo apt-get install tor
68
+#+end_src
69
+
70
+or on Arch/Parabola:
71
+
72
+#+begin_src bash :tangle no
73
+sudo pacman -S tor
74
+sudo systemctl enable tor
75
+sudo systemctl start tor
76
+#+end_src

+ 1
- 0
doc/EN/apps.org Vedi File

@@ -79,6 +79,7 @@ Calendar system compatible with CalDAV and CardDAV. Manage your calendar events
79 79
 * tt-rss
80 80
 Private RSS reader. Pulls in RSS/Atom feeds via Tor and is only accessible via an onion address. Have "/the right to read/" without the Surveillance State knowing what you're reading. Also available with a user interface suitable for viewing on mobile devices via a browser such as OrFox.
81 81
 
82
+[[./app_rss.html][How to use it]]
82 83
 * Syncthing
83 84
 Possibly the best way to synchronise files across all of your devices. Once it has been set up it "just works" with no user intervention needed.
84 85
 

+ 1
- 50
doc/EN/usage.org Vedi File

@@ -29,7 +29,7 @@
29 29
 | [[./app_xmpp.html][XMPP/Jabber]]                                          |
30 30
 | [[./app_tox.html][Tox]]                                                  |
31 31
 | [[./app_mumble.html][Mumble]]                                               |
32
-| [[RSS Reader]]                                           |
32
+| [[./app_rss.html][RSS Reader]]                                           |
33 33
 | [[Git Projects]]                                         |
34 34
 | [[Adding or removing users]]                             |
35 35
 | [[Blocking Ads]]                                         |
@@ -100,55 +100,6 @@ ssh username@address.onion -p 2222
100 100
 #+END_SRC
101 101
 
102 102
 Subsequently even if dynamic DNS isn't working you may still be able to administer your system. Using the onion address also gives you some degree of protection against corporate or government metadata analysis, since it becomes more difficult to passively detect which systems are communicating.
103
-* RSS Reader
104
-The way that RSS reading is set up on Freedombone gives you strong reading privacy. Not only is there onion routing between you and the server but also between the server and the source of the RSS feed. The only down side is that many RSS feeds are still http only, and so could be vulnerable to injection attacks, but it's expected that more of this will go to https in the foreseeable future due to a combination of growing recognition of security issues and systems like Let's Encrypt which make obtaining certificates much easier.
105
-
106
-[[file:images/rss_reader_mobile.jpg]]
107
-
108
-** Finding the onion address
109
-See the control panel for the RSS reader onion address.
110
-
111
-#+BEGIN_SRC bash
112
-ssh username@domainname -p 2222
113
-#+END_SRC
114
-
115
-Select /Administrator controls/ then select the *About* screen.
116
-
117
-The RSS reader is accessible only via an onion address. This provides a reasonable degree of reading privacy, making it difficult for passive adversaries such as governments, corporations or criminals to create lists of sites which you are subscribed to.
118
-
119
-To set up the system open http://rss_reader_onion_address and log in with username *admin* and the password obtained either at the beginning of the install or from the README file in your home directory. You can then select the *Actions* menu and begin adding your feeds.
120
-
121
-** On mobile
122
-To access the RSS reader from a mobile device you can install a Tor compatible browser such as OrFox. It will try to automatically change to the mobile version of the user interface. Remember to add the site to the NoScript whitelist, and you may also need to turn HTTPS Everywhere off.
123
-
124
-#+BEGIN_QUOTE
125
-A note for the paranoid is that on mobile devices you get redirected to a different onion address which is specially set up for the mobile interface, so don't be alarmed that it looks like your connection is being hijacked.
126
-#+END_QUOTE
127
-** With Emacs
128
-If you are an Emacs user then you can also read your RSS feeds via the [[https://github.com/dk87/avandu][Avandu]] mode.
129
-
130
-Add the following to your configuration, changing the address and password as appropriate.
131
-
132
-#+begin_src emacs-lisp :tangle no
133
-(setq avandu-tt-rss-api-url "http://rss_reader_onion_address/api/"
134
-      avandu-user "admin"
135
-      avandu-password "mypassword")
136
-#+end_src
137
-
138
-If you don't already have Emacs set up to route through Tor then also add the following:
139
-
140
-#+begin_src emacs-lisp :tangle no
141
-(setq socks-noproxy '("localhost"))
142
-(require 'socks)
143
-(require 'tls)
144
-(setq socks-server (list "Tor socks" "localhost" 9050 5))
145
-#+end_src
146
-
147
-And ensure that the Tor daemon is installed:
148
-
149
-#+begin_src bash :tangle no
150
-sudo apt-get install tor
151
-#+end_src
152 103
 * Git Projects
153 104
 Github is ok, but it's proprietary and funded by venture capital. If you been around on the internet for long enough then you know how this story eventually works itself out - i.e. badly for the users. It's really only a question of time. If you're a software developer or do things which involve the Git version control system then it's a good idea to become accustomed to hosting your own repositories, before the inevitable Github shitstorm happens.
154 105
 

+ 379
- 0
website/EN/app_rss.html Vedi File

@@ -0,0 +1,379 @@
1
+<?xml version="1.0" encoding="utf-8"?>
2
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3
+"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
+<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
5
+<head>
6
+<!-- 2016-11-12 Sat 23:04 -->
7
+<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
8
+<meta name="viewport" content="width=device-width, initial-scale=1" />
9
+<title></title>
10
+<meta name="generator" content="Org mode" />
11
+<meta name="author" content="Bob Mottram" />
12
+<meta name="description" content="How to use the RSS reader"
13
+ />
14
+<meta name="keywords" content="Freedombone, RSS" />
15
+<style type="text/css">
16
+ <!--/*--><![CDATA[/*><!--*/
17
+  .title  { text-align: center;
18
+             margin-bottom: .2em; }
19
+  .subtitle { text-align: center;
20
+              font-size: medium;
21
+              font-weight: bold;
22
+              margin-top:0; }
23
+  .todo   { font-family: monospace; color: red; }
24
+  .done   { font-family: monospace; color: green; }
25
+  .priority { font-family: monospace; color: orange; }
26
+  .tag    { background-color: #eee; font-family: monospace;
27
+            padding: 2px; font-size: 80%; font-weight: normal; }
28
+  .timestamp { color: #bebebe; }
29
+  .timestamp-kwd { color: #5f9ea0; }
30
+  .org-right  { margin-left: auto; margin-right: 0px;  text-align: right; }
31
+  .org-left   { margin-left: 0px;  margin-right: auto; text-align: left; }
32
+  .org-center { margin-left: auto; margin-right: auto; text-align: center; }
33
+  .underline { text-decoration: underline; }
34
+  #postamble p, #preamble p { font-size: 90%; margin: .2em; }
35
+  p.verse { margin-left: 3%; }
36
+  pre {
37
+    border: 1px solid #ccc;
38
+    box-shadow: 3px 3px 3px #eee;
39
+    padding: 8pt;
40
+    font-family: monospace;
41
+    overflow: auto;
42
+    margin: 1.2em;
43
+  }
44
+  pre.src {
45
+    position: relative;
46
+    overflow: visible;
47
+    padding-top: 1.2em;
48
+  }
49
+  pre.src:before {
50
+    display: none;
51
+    position: absolute;
52
+    background-color: white;
53
+    top: -10px;
54
+    right: 10px;
55
+    padding: 3px;
56
+    border: 1px solid black;
57
+  }
58
+  pre.src:hover:before { display: inline;}
59
+  /* Languages per Org manual */
60
+  pre.src-asymptote:before { content: 'Asymptote'; }
61
+  pre.src-awk:before { content: 'Awk'; }
62
+  pre.src-C:before { content: 'C'; }
63
+  /* pre.src-C++ doesn't work in CSS */
64
+  pre.src-clojure:before { content: 'Clojure'; }
65
+  pre.src-css:before { content: 'CSS'; }
66
+  pre.src-D:before { content: 'D'; }
67
+  pre.src-ditaa:before { content: 'ditaa'; }
68
+  pre.src-dot:before { content: 'Graphviz'; }
69
+  pre.src-calc:before { content: 'Emacs Calc'; }
70
+  pre.src-emacs-lisp:before { content: 'Emacs Lisp'; }
71
+  pre.src-fortran:before { content: 'Fortran'; }
72
+  pre.src-gnuplot:before { content: 'gnuplot'; }
73
+  pre.src-haskell:before { content: 'Haskell'; }
74
+  pre.src-java:before { content: 'Java'; }
75
+  pre.src-js:before { content: 'Javascript'; }
76
+  pre.src-latex:before { content: 'LaTeX'; }
77
+  pre.src-ledger:before { content: 'Ledger'; }
78
+  pre.src-lisp:before { content: 'Lisp'; }
79
+  pre.src-lilypond:before { content: 'Lilypond'; }
80
+  pre.src-lua:before { content: 'Lua'; }
81
+  pre.src-matlab:before { content: 'MATLAB'; }
82
+  pre.src-mscgen:before { content: 'Mscgen'; }
83
+  pre.src-ocaml:before { content: 'Objective Caml'; }
84
+  pre.src-octave:before { content: 'Octave'; }
85
+  pre.src-org:before { content: 'Org mode'; }
86
+  pre.src-oz:before { content: 'OZ'; }
87
+  pre.src-plantuml:before { content: 'Plantuml'; }
88
+  pre.src-processing:before { content: 'Processing.js'; }
89
+  pre.src-python:before { content: 'Python'; }
90
+  pre.src-R:before { content: 'R'; }
91
+  pre.src-ruby:before { content: 'Ruby'; }
92
+  pre.src-sass:before { content: 'Sass'; }
93
+  pre.src-scheme:before { content: 'Scheme'; }
94
+  pre.src-screen:before { content: 'Gnu Screen'; }
95
+  pre.src-sed:before { content: 'Sed'; }
96
+  pre.src-sh:before { content: 'shell'; }
97
+  pre.src-sql:before { content: 'SQL'; }
98
+  pre.src-sqlite:before { content: 'SQLite'; }
99
+  /* additional languages in org.el's org-babel-load-languages alist */
100
+  pre.src-forth:before { content: 'Forth'; }
101
+  pre.src-io:before { content: 'IO'; }
102
+  pre.src-J:before { content: 'J'; }
103
+  pre.src-makefile:before { content: 'Makefile'; }
104
+  pre.src-maxima:before { content: 'Maxima'; }
105
+  pre.src-perl:before { content: 'Perl'; }
106
+  pre.src-picolisp:before { content: 'Pico Lisp'; }
107
+  pre.src-scala:before { content: 'Scala'; }
108
+  pre.src-shell:before { content: 'Shell Script'; }
109
+  pre.src-ebnf2ps:before { content: 'ebfn2ps'; }
110
+  /* additional language identifiers per "defun org-babel-execute"
111
+       in ob-*.el */
112
+  pre.src-cpp:before  { content: 'C++'; }
113
+  pre.src-abc:before  { content: 'ABC'; }
114
+  pre.src-coq:before  { content: 'Coq'; }
115
+  pre.src-groovy:before  { content: 'Groovy'; }
116
+  /* additional language identifiers from org-babel-shell-names in
117
+     ob-shell.el: ob-shell is the only babel language using a lambda to put
118
+     the execution function name together. */
119
+  pre.src-bash:before  { content: 'bash'; }
120
+  pre.src-csh:before  { content: 'csh'; }
121
+  pre.src-ash:before  { content: 'ash'; }
122
+  pre.src-dash:before  { content: 'dash'; }
123
+  pre.src-ksh:before  { content: 'ksh'; }
124
+  pre.src-mksh:before  { content: 'mksh'; }
125
+  pre.src-posh:before  { content: 'posh'; }
126
+  /* Additional Emacs modes also supported by the LaTeX listings package */
127
+  pre.src-ada:before { content: 'Ada'; }
128
+  pre.src-asm:before { content: 'Assembler'; }
129
+  pre.src-caml:before { content: 'Caml'; }
130
+  pre.src-delphi:before { content: 'Delphi'; }
131
+  pre.src-html:before { content: 'HTML'; }
132
+  pre.src-idl:before { content: 'IDL'; }
133
+  pre.src-mercury:before { content: 'Mercury'; }
134
+  pre.src-metapost:before { content: 'MetaPost'; }
135
+  pre.src-modula-2:before { content: 'Modula-2'; }
136
+  pre.src-pascal:before { content: 'Pascal'; }
137
+  pre.src-ps:before { content: 'PostScript'; }
138
+  pre.src-prolog:before { content: 'Prolog'; }
139
+  pre.src-simula:before { content: 'Simula'; }
140
+  pre.src-tcl:before { content: 'tcl'; }
141
+  pre.src-tex:before { content: 'TeX'; }
142
+  pre.src-plain-tex:before { content: 'Plain TeX'; }
143
+  pre.src-verilog:before { content: 'Verilog'; }
144
+  pre.src-vhdl:before { content: 'VHDL'; }
145
+  pre.src-xml:before { content: 'XML'; }
146
+  pre.src-nxml:before { content: 'XML'; }
147
+  /* add a generic configuration mode; LaTeX export needs an additional
148
+     (add-to-list 'org-latex-listings-langs '(conf " ")) in .emacs */
149
+  pre.src-conf:before { content: 'Configuration File'; }
150
+
151
+  table { border-collapse:collapse; }
152
+  caption.t-above { caption-side: top; }
153
+  caption.t-bottom { caption-side: bottom; }
154
+  td, th { vertical-align:top;  }
155
+  th.org-right  { text-align: center;  }
156
+  th.org-left   { text-align: center;   }
157
+  th.org-center { text-align: center; }
158
+  td.org-right  { text-align: right;  }
159
+  td.org-left   { text-align: left;   }
160
+  td.org-center { text-align: center; }
161
+  dt { font-weight: bold; }
162
+  .footpara { display: inline; }
163
+  .footdef  { margin-bottom: 1em; }
164
+  .figure { padding: 1em; }
165
+  .figure p { text-align: center; }
166
+  .inlinetask {
167
+    padding: 10px;
168
+    border: 2px solid gray;
169
+    margin: 10px;
170
+    background: #ffffcc;
171
+  }
172
+  #org-div-home-and-up
173
+   { text-align: right; font-size: 70%; white-space: nowrap; }
174
+  textarea { overflow-x: auto; }
175
+  .linenr { font-size: smaller }
176
+  .code-highlighted { background-color: #ffff00; }
177
+  .org-info-js_info-navigation { border-style: none; }
178
+  #org-info-js_console-label
179
+    { font-size: 10px; font-weight: bold; white-space: nowrap; }
180
+  .org-info-js_search-highlight
181
+    { background-color: #ffff00; color: #000000; font-weight: bold; }
182
+  .org-svg { width: 90%; }
183
+  /*]]>*/-->
184
+</style>
185
+<link rel="stylesheet" type="text/css" href="freedombone.css" />
186
+<script type="text/javascript">
187
+/*
188
+@licstart  The following is the entire license notice for the
189
+JavaScript code in this tag.
190
+
191
+Copyright (C) 2012-2013 Free Software Foundation, Inc.
192
+
193
+The JavaScript code in this tag is free software: you can
194
+redistribute it and/or modify it under the terms of the GNU
195
+General Public License (GNU GPL) as published by the Free Software
196
+Foundation, either version 3 of the License, or (at your option)
197
+any later version.  The code is distributed WITHOUT ANY WARRANTY;
198
+without even the implied warranty of MERCHANTABILITY or FITNESS
199
+FOR A PARTICULAR PURPOSE.  See the GNU GPL for more details.
200
+
201
+As additional permission under GNU GPL version 3 section 7, you
202
+may distribute non-source (e.g., minimized or compacted) forms of
203
+that code without the copy of the GNU GPL normally required by
204
+section 4, provided you include this license notice and a URL
205
+through which recipients can access the Corresponding Source.
206
+
207
+
208
+@licend  The above is the entire license notice
209
+for the JavaScript code in this tag.
210
+*/
211
+<!--/*--><![CDATA[/*><!--*/
212
+ function CodeHighlightOn(elem, id)
213
+ {
214
+   var target = document.getElementById(id);
215
+   if(null != target) {
216
+     elem.cacheClassElem = elem.className;
217
+     elem.cacheClassTarget = target.className;
218
+     target.className = "code-highlighted";
219
+     elem.className   = "code-highlighted";
220
+   }
221
+ }
222
+ function CodeHighlightOff(elem, id)
223
+ {
224
+   var target = document.getElementById(id);
225
+   if(elem.cacheClassElem)
226
+     elem.className = elem.cacheClassElem;
227
+   if(elem.cacheClassTarget)
228
+     target.className = elem.cacheClassTarget;
229
+ }
230
+/*]]>*///-->
231
+</script>
232
+</head>
233
+<body>
234
+<div id="preamble" class="status">
235
+<a name="top" id="top"></a>
236
+</div>
237
+<div id="content">
238
+<div class="org-center">
239
+
240
+<div class="figure">
241
+<p><img src="images/logo.png" alt="logo.png" />
242
+</p>
243
+</div>
244
+</div>
245
+
246
+<center>
247
+<h1>RSS Reader</h1>
248
+</center>
249
+
250
+<p>
251
+The way that RSS reading is set up on Freedombone gives you strong reading privacy. Not only is there onion routing between you and the server but also between the server and the source of the RSS feed. The only down side is that many RSS feeds are still http only, and so could be vulnerable to injection attacks, but it's expected that more of this will go to https in the foreseeable future due to a combination of growing recognition of security issues and systems like Let's Encrypt which make obtaining certificates much easier.
252
+</p>
253
+
254
+<div class="org-center">
255
+
256
+<div class="figure">
257
+<p><img src="images/rss_reader_mobile.jpg" alt="rss_reader_mobile.jpg" />
258
+</p>
259
+</div>
260
+</div>
261
+
262
+<div id="outline-container-orgb5420ab" class="outline-2">
263
+<h2 id="orgb5420ab">Finding the onion address</h2>
264
+<div class="outline-text-2" id="text-orgb5420ab">
265
+<p>
266
+See the control panel for the RSS reader onion address.
267
+</p>
268
+
269
+<div class="org-src-container">
270
+<pre class="src src-bash">ssh username@domainname -p 2222
271
+</pre>
272
+</div>
273
+
274
+<p>
275
+Select <b>Administrator controls</b> then select the <b>About</b> screen.
276
+</p>
277
+
278
+<p>
279
+The RSS reader is accessible only via an onion address. This provides a reasonable degree of reading privacy, making it difficult for passive adversaries such as governments, corporations or criminals to create lists of sites which you are subscribed to.
280
+</p>
281
+
282
+<p>
283
+To set up the system open <a href="http://rss_reader_onion_address">http://rss_reader_onion_address</a> and log in with username <b>admin</b> and the password obtained either at the beginning of the install or from the README file in your home directory. You can then select the <b>Actions</b> menu and begin adding your feeds.
284
+</p>
285
+</div>
286
+</div>
287
+
288
+<div id="outline-container-org9ed01db" class="outline-2">
289
+<h2 id="org9ed01db">On mobile</h2>
290
+<div class="outline-text-2" id="text-org9ed01db">
291
+<p>
292
+To access the RSS reader from a mobile device you can install a Tor compatible browser such as OrFox, then use the mobile onion address shown on the <b>About</b> screen of the <b>Administrator controls</b>. Remember to add the site to the NoScript whitelist, and you may also need to turn HTTPS Everywhere off.
293
+</p>
294
+
295
+<blockquote>
296
+<p>
297
+A note for the paranoid is that on mobile devices you get redirected to a different onion address which is specially set up for the mobile interface, so don't be alarmed that it looks like your connection is being hijacked.
298
+</p>
299
+</blockquote>
300
+</div>
301
+</div>
302
+<div id="outline-container-orgaafcbb6" class="outline-2">
303
+<h2 id="orgaafcbb6">With Emacs</h2>
304
+<div class="outline-text-2" id="text-orgaafcbb6">
305
+<p>
306
+If you are an Emacs user then you can also read your RSS feeds via the <a href="https://github.com/dk87/avandu">Avandu</a> mode.
307
+</p>
308
+
309
+<p>
310
+Add the following to your configuration, changing the address and password as appropriate.
311
+</p>
312
+
313
+<div class="org-src-container">
314
+<pre class="src src-emacs-lisp">(<span class="org-keyword">setq</span> avandu-tt-rss-api-url <span class="org-string">"http://rss_reader_onion_address/api/"</span>
315
+      avandu-user <span class="org-string">"admin"</span>
316
+      avandu-password <span class="org-string">"mypassword"</span>)
317
+</pre>
318
+</div>
319
+
320
+<p>
321
+If you don't already have Emacs set up to route through Tor then also add the following:
322
+</p>
323
+
324
+<div class="org-src-container">
325
+<pre class="src src-emacs-lisp">(<span class="org-keyword">setq</span> socks-noproxy '(<span class="org-string">"localhost"</span>))
326
+(<span class="org-keyword">require</span> '<span class="org-constant">socks</span>)
327
+(<span class="org-keyword">require</span> '<span class="org-constant">tls</span>)
328
+(<span class="org-keyword">setq</span> socks-server (list <span class="org-string">"Tor socks"</span> <span class="org-string">"localhost"</span> 9050 5))
329
+</pre>
330
+</div>
331
+
332
+<p>
333
+And ensure that the Tor daemon is installed. On a debian based system:
334
+</p>
335
+
336
+<div class="org-src-container">
337
+<pre class="src src-bash">sudo apt-get install tor
338
+</pre>
339
+</div>
340
+
341
+<p>
342
+or on Arch/Parabola:
343
+</p>
344
+
345
+<div class="org-src-container">
346
+<pre class="src src-bash">sudo pacman -S tor
347
+sudo systemctl enable tor
348
+sudo systemctl start tor
349
+</pre>
350
+</div>
351
+</div>
352
+</div>
353
+</div>
354
+<div id="postamble" class="status">
355
+
356
+<style type="text/css">
357
+.back-to-top {
358
+    position: fixed;
359
+    bottom: 2em;
360
+    right: 0px;
361
+    text-decoration: none;
362
+    color: #000000;
363
+    background-color: rgba(235, 235, 235, 0.80);
364
+    font-size: 12px;
365
+    padding: 1em;
366
+    display: none;
367
+}
368
+
369
+.back-to-top:hover {
370
+    background-color: rgba(135, 135, 135, 0.50);
371
+}
372
+</style>
373
+
374
+<div class="back-to-top">
375
+<a href="#top">Back to top</a> | <a href="mailto:bob@freedombone.net">E-mail me</a>
376
+</div>
377
+</div>
378
+</body>
379
+</html>

+ 71
- 68
website/EN/apps.html Vedi File

@@ -3,7 +3,7 @@
3 3
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4 4
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
5 5
 <head>
6
-<!-- 2016-11-12 Sat 22:53 -->
6
+<!-- 2016-11-12 Sat 23:05 -->
7 7
 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
8 8
 <meta name="viewport" content="width=device-width, initial-scale=1" />
9 9
 <title></title>
@@ -257,9 +257,9 @@ The base install of the system just contains an email server and Mutt client, bu
257 257
 </div>
258 258
 </div>
259 259
 
260
-<div id="outline-container-org33a9d04" class="outline-2">
261
-<h2 id="org33a9d04">DLNA</h2>
262
-<div class="outline-text-2" id="text-org33a9d04">
260
+<div id="outline-container-org62db2d9" class="outline-2">
261
+<h2 id="org62db2d9">DLNA</h2>
262
+<div class="outline-text-2" id="text-org62db2d9">
263 263
 <p>
264 264
 Enables you to use the system as a music server which any DLNA compatible devices can connect to within your home network.
265 265
 </p>
@@ -269,45 +269,45 @@ Enables you to use the system as a music server which any DLNA compatible device
269 269
 </p>
270 270
 </div>
271 271
 </div>
272
-<div id="outline-container-orgc3cdd75" class="outline-2">
273
-<h2 id="orgc3cdd75">Dokuwiki</h2>
274
-<div class="outline-text-2" id="text-orgc3cdd75">
272
+<div id="outline-container-org36e6ee8" class="outline-2">
273
+<h2 id="org36e6ee8">Dokuwiki</h2>
274
+<div class="outline-text-2" id="text-org36e6ee8">
275 275
 <p>
276 276
 A databaseless wiki system.
277 277
 </p>
278 278
 </div>
279 279
 </div>
280 280
 
281
-<div id="outline-container-org15182ac" class="outline-2">
282
-<h2 id="org15182ac">Emacs</h2>
283
-<div class="outline-text-2" id="text-org15182ac">
281
+<div id="outline-container-orgc8fb8d3" class="outline-2">
282
+<h2 id="orgc8fb8d3">Emacs</h2>
283
+<div class="outline-text-2" id="text-orgc8fb8d3">
284 284
 <p>
285 285
 If you use the Mutt client to read your email then this will set it up to use emacs for composing new mail.
286 286
 </p>
287 287
 </div>
288 288
 </div>
289 289
 
290
-<div id="outline-container-orge86fa0b" class="outline-2">
291
-<h2 id="orge86fa0b">Etherpad</h2>
292
-<div class="outline-text-2" id="text-orge86fa0b">
290
+<div id="outline-container-org804a2db" class="outline-2">
291
+<h2 id="org804a2db">Etherpad</h2>
292
+<div class="outline-text-2" id="text-org804a2db">
293 293
 <p>
294 294
 Collaborate on creating documents in real time. Maybe you're planning a holiday with other family members or creating documentation for a Free Software project along with other volunteers. Etherpad is hard to beat for simplicity and speed. Only users of the system will be able to access it.
295 295
 </p>
296 296
 </div>
297 297
 </div>
298 298
 
299
-<div id="outline-container-orgbadf55a" class="outline-2">
300
-<h2 id="orgbadf55a">Ghost</h2>
301
-<div class="outline-text-2" id="text-orgbadf55a">
299
+<div id="outline-container-orgda10680" class="outline-2">
300
+<h2 id="orgda10680">Ghost</h2>
301
+<div class="outline-text-2" id="text-orgda10680">
302 302
 <p>
303 303
 Modern looking blogging system.
304 304
 </p>
305 305
 </div>
306 306
 </div>
307 307
 
308
-<div id="outline-container-orgb53ae00" class="outline-2">
309
-<h2 id="orgb53ae00">GNU Social</h2>
310
-<div class="outline-text-2" id="text-orgb53ae00">
308
+<div id="outline-container-org8fba16b" class="outline-2">
309
+<h2 id="org8fba16b">GNU Social</h2>
310
+<div class="outline-text-2" id="text-org8fba16b">
311 311
 <p>
312 312
 Federated social network. You can "<i>remote follow</i>" other users within the GNU Social federation.
313 313
 </p>
@@ -317,27 +317,27 @@ Federated social network. You can "<i>remote follow</i>" other users within the
317 317
 </p>
318 318
 </div>
319 319
 </div>
320
-<div id="outline-container-orgdd04797" class="outline-2">
321
-<h2 id="orgdd04797">Gogs</h2>
322
-<div class="outline-text-2" id="text-orgdd04797">
320
+<div id="outline-container-org6f5afe6" class="outline-2">
321
+<h2 id="org6f5afe6">Gogs</h2>
322
+<div class="outline-text-2" id="text-org6f5afe6">
323 323
 <p>
324 324
 Lightweight git project hosting system. You can mirror projects from Github, or if Github turns evil then just host your own projects while retaining the familiar <i>fork-and-pull</i> workflow. If you can use Github then you can also use Gogs.
325 325
 </p>
326 326
 </div>
327 327
 </div>
328 328
 
329
-<div id="outline-container-org4eeb90c" class="outline-2">
330
-<h2 id="org4eeb90c">HTMLy</h2>
331
-<div class="outline-text-2" id="text-org4eeb90c">
329
+<div id="outline-container-org5746649" class="outline-2">
330
+<h2 id="org5746649">HTMLy</h2>
331
+<div class="outline-text-2" id="text-org5746649">
332 332
 <p>
333 333
 Databaseless blogging system. Quite simple and with a markdown-like format.
334 334
 </p>
335 335
 </div>
336 336
 </div>
337 337
 
338
-<div id="outline-container-orgf59d7ef" class="outline-2">
339
-<h2 id="orgf59d7ef">Hubzilla</h2>
340
-<div class="outline-text-2" id="text-orgf59d7ef">
338
+<div id="outline-container-org3067f30" class="outline-2">
339
+<h2 id="org3067f30">Hubzilla</h2>
340
+<div class="outline-text-2" id="text-org3067f30">
341 341
 <p>
342 342
 Web publishing platform with social network like features and good privacy controls so that it's possible to specify who can see which content. Includes photo albums, calendar, wiki and file storage.
343 343
 </p>
@@ -347,9 +347,9 @@ Web publishing platform with social network like features and good privacy contr
347 347
 </p>
348 348
 </div>
349 349
 </div>
350
-<div id="outline-container-org0f04bb4" class="outline-2">
351
-<h2 id="org0f04bb4">IRC Server (ngirc)</h2>
352
-<div class="outline-text-2" id="text-org0f04bb4">
350
+<div id="outline-container-org6b0640e" class="outline-2">
351
+<h2 id="org6b0640e">IRC Server (ngirc)</h2>
352
+<div class="outline-text-2" id="text-org6b0640e">
353 353
 <p>
354 354
 Run your own IRC chat channel which can be secured with a password and accessible via an onion address. A bouncer is included so that you can receive messages sent while you were offline. Works with Hexchat and other popular clients.
355 355
 </p>
@@ -359,36 +359,36 @@ Run your own IRC chat channel which can be secured with a password and accessibl
359 359
 </p>
360 360
 </div>
361 361
 </div>
362
-<div id="outline-container-org8677343" class="outline-2">
363
-<h2 id="org8677343">Jitsi Meet</h2>
364
-<div class="outline-text-2" id="text-org8677343">
362
+<div id="outline-container-org3673a78" class="outline-2">
363
+<h2 id="org3673a78">Jitsi Meet</h2>
364
+<div class="outline-text-2" id="text-org3673a78">
365 365
 <p>
366 366
 Experimental WebRTC video conferencing system, similar to Google Hangouts. This may not be fully functional, but is hoped to be in the near future.
367 367
 </p>
368 368
 </div>
369 369
 </div>
370 370
 
371
-<div id="outline-container-org9bee35c" class="outline-2">
372
-<h2 id="org9bee35c">Lychee</h2>
373
-<div class="outline-text-2" id="text-org9bee35c">
371
+<div id="outline-container-org52c8925" class="outline-2">
372
+<h2 id="org52c8925">Lychee</h2>
373
+<div class="outline-text-2" id="text-org52c8925">
374 374
 <p>
375 375
 Make your photo albums available on the web.
376 376
 </p>
377 377
 </div>
378 378
 </div>
379 379
 
380
-<div id="outline-container-org99d46aa" class="outline-2">
381
-<h2 id="org99d46aa">Mailpile</h2>
382
-<div class="outline-text-2" id="text-org99d46aa">
380
+<div id="outline-container-orge747965" class="outline-2">
381
+<h2 id="orge747965">Mailpile</h2>
382
+<div class="outline-text-2" id="text-orge747965">
383 383
 <p>
384 384
 Modern email client which supports GPG encryption.
385 385
 </p>
386 386
 </div>
387 387
 </div>
388 388
 
389
-<div id="outline-container-org1f3d613" class="outline-2">
390
-<h2 id="org1f3d613">Mumble</h2>
391
-<div class="outline-text-2" id="text-org1f3d613">
389
+<div id="outline-container-org4a8c2a9" class="outline-2">
390
+<h2 id="org4a8c2a9">Mumble</h2>
391
+<div class="outline-text-2" id="text-org4a8c2a9">
392 392
 <p>
393 393
 The popular VoIP and text chat system. Say goodbye to old-fashioned telephony conferences with silly dial codes. Also works well on mobile.
394 394
 </p>
@@ -398,45 +398,48 @@ The popular VoIP and text chat system. Say goodbye to old-fashioned telephony co
398 398
 </p>
399 399
 </div>
400 400
 </div>
401
-<div id="outline-container-org24bef8c" class="outline-2">
402
-<h2 id="org24bef8c">PI-Hole</h2>
403
-<div class="outline-text-2" id="text-org24bef8c">
401
+<div id="outline-container-orgd8b1747" class="outline-2">
402
+<h2 id="orgd8b1747">PI-Hole</h2>
403
+<div class="outline-text-2" id="text-orgd8b1747">
404 404
 <p>
405 405
 The black hole for web adverts. Block adverts at the domain name level within your local network. It can significantly reduce bandwidth, speed up page load times and protect your systems from being tracked by spyware.
406 406
 </p>
407 407
 </div>
408 408
 </div>
409 409
 
410
-<div id="outline-container-org5a38a3c" class="outline-2">
411
-<h2 id="org5a38a3c">PostActiv</h2>
412
-<div class="outline-text-2" id="text-org5a38a3c">
410
+<div id="outline-container-org205ed4c" class="outline-2">
411
+<h2 id="org205ed4c">PostActiv</h2>
412
+<div class="outline-text-2" id="text-org205ed4c">
413 413
 <p>
414 414
 An alternative federated social networking system compatible with GNU Social. It includes some optimisations and fixes currently not available within the main GNU Social project.
415 415
 </p>
416 416
 </div>
417 417
 </div>
418 418
 
419
-<div id="outline-container-org051adb1" class="outline-2">
420
-<h2 id="org051adb1">Radicale</h2>
421
-<div class="outline-text-2" id="text-org051adb1">
419
+<div id="outline-container-org6777291" class="outline-2">
420
+<h2 id="org6777291">Radicale</h2>
421
+<div class="outline-text-2" id="text-org6777291">
422 422
 <p>
423 423
 Calendar system compatible with CalDAV and CardDAV. Manage your calendar events easily across all your devices.
424 424
 </p>
425 425
 </div>
426 426
 </div>
427 427
 
428
-<div id="outline-container-orgc88fda9" class="outline-2">
429
-<h2 id="orgc88fda9">tt-rss</h2>
430
-<div class="outline-text-2" id="text-orgc88fda9">
428
+<div id="outline-container-org04f022b" class="outline-2">
429
+<h2 id="org04f022b">tt-rss</h2>
430
+<div class="outline-text-2" id="text-org04f022b">
431 431
 <p>
432 432
 Private RSS reader. Pulls in RSS/Atom feeds via Tor and is only accessible via an onion address. Have "<i>the right to read</i>" without the Surveillance State knowing what you're reading. Also available with a user interface suitable for viewing on mobile devices via a browser such as OrFox.
433 433
 </p>
434
+
435
+<p>
436
+<a href="./app_rss.html">How to use it</a>
437
+</p>
434 438
 </div>
435 439
 </div>
436
-
437
-<div id="outline-container-org75358fa" class="outline-2">
438
-<h2 id="org75358fa">Syncthing</h2>
439
-<div class="outline-text-2" id="text-org75358fa">
440
+<div id="outline-container-org2d2cfa7" class="outline-2">
441
+<h2 id="org2d2cfa7">Syncthing</h2>
442
+<div class="outline-text-2" id="text-org2d2cfa7">
440 443
 <p>
441 444
 Possibly the best way to synchronise files across all of your devices. Once it has been set up it "just works" with no user intervention needed.
442 445
 </p>
@@ -446,9 +449,9 @@ Possibly the best way to synchronise files across all of your devices. Once it h
446 449
 </p>
447 450
 </div>
448 451
 </div>
449
-<div id="outline-container-orgff69598" class="outline-2">
450
-<h2 id="orgff69598">Tox</h2>
451
-<div class="outline-text-2" id="text-orgff69598">
452
+<div id="outline-container-org427b028" class="outline-2">
453
+<h2 id="org427b028">Tox</h2>
454
+<div class="outline-text-2" id="text-org427b028">
452 455
 <p>
453 456
 Client and bootstrap node for the Tox chat/VoIP system.
454 457
 </p>
@@ -458,18 +461,18 @@ Client and bootstrap node for the Tox chat/VoIP system.
458 461
 </p>
459 462
 </div>
460 463
 </div>
461
-<div id="outline-container-org41dc75f" class="outline-2">
462
-<h2 id="org41dc75f">Vim</h2>
463
-<div class="outline-text-2" id="text-org41dc75f">
464
+<div id="outline-container-orgc67de70" class="outline-2">
465
+<h2 id="orgc67de70">Vim</h2>
466
+<div class="outline-text-2" id="text-orgc67de70">
464 467
 <p>
465 468
 If you use the Mutt client to read your email then this will set it up to use vim for composing new mail.
466 469
 </p>
467 470
 </div>
468 471
 </div>
469 472
 
470
-<div id="outline-container-org1482c85" class="outline-2">
471
-<h2 id="org1482c85">XMPP</h2>
472
-<div class="outline-text-2" id="text-org1482c85">
473
+<div id="outline-container-orgd06f6f3" class="outline-2">
474
+<h2 id="orgd06f6f3">XMPP</h2>
475
+<div class="outline-text-2" id="text-orgd06f6f3">
473 476
 <p>
474 477
 Chat server which can be used together with client such as Gajim or Conversations to provide end-to-end content security and also onion routed metadata security. Includes advanced features such as <i>client state notification</i> to save battery power on your mobile devices, support for seamless roaming between networks and <i>message carbons</i> so that you can receive the same messages while being simultaneously logged in to your account on more than one device.
475 478
 </p>

+ 41
- 136
website/EN/usage.html Vedi File

@@ -3,7 +3,7 @@
3 3
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4 4
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
5 5
 <head>
6
-<!-- 2016-11-12 Sat 22:54 -->
6
+<!-- 2016-11-12 Sat 23:05 -->
7 7
 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
8 8
 <meta name="viewport" content="width=device-width, initial-scale=1" />
9 9
 <title></title>
@@ -255,15 +255,15 @@ for the JavaScript code in this tag.
255 255
 </colgroup>
256 256
 <tbody>
257 257
 <tr>
258
-<td class="org-left"><a href="#org18f5094">Readme</a></td>
258
+<td class="org-left"><a href="#org23abd36">Readme</a></td>
259 259
 </tr>
260 260
 
261 261
 <tr>
262
-<td class="org-left"><a href="#org14f4bd4">Improving ssh security</a></td>
262
+<td class="org-left"><a href="#orgb27a404">Improving ssh security</a></td>
263 263
 </tr>
264 264
 
265 265
 <tr>
266
-<td class="org-left"><a href="#orga9ee65a">Administrating the system via an onion address (Tor)</a></td>
266
+<td class="org-left"><a href="#org406b9c4">Administrating the system via an onion address (Tor)</a></td>
267 267
 </tr>
268 268
 
269 269
 <tr>
@@ -307,26 +307,26 @@ for the JavaScript code in this tag.
307 307
 </tr>
308 308
 
309 309
 <tr>
310
-<td class="org-left"><a href="#orgaa7ee3f">RSS Reader</a></td>
310
+<td class="org-left"><a href="./app_rss.html">RSS Reader</a></td>
311 311
 </tr>
312 312
 
313 313
 <tr>
314
-<td class="org-left"><a href="#org96f00d6">Git Projects</a></td>
314
+<td class="org-left"><a href="#org2b5ad1e">Git Projects</a></td>
315 315
 </tr>
316 316
 
317 317
 <tr>
318
-<td class="org-left"><a href="#org902fe36">Adding or removing users</a></td>
318
+<td class="org-left"><a href="#org6b00b78">Adding or removing users</a></td>
319 319
 </tr>
320 320
 
321 321
 <tr>
322
-<td class="org-left"><a href="#orgee498e5">Blocking Ads</a></td>
322
+<td class="org-left"><a href="#org5f849d3">Blocking Ads</a></td>
323 323
 </tr>
324 324
 </tbody>
325 325
 </table>
326 326
 
327
-<div id="outline-container-org18f5094" class="outline-2">
328
-<h2 id="org18f5094">Readme</h2>
329
-<div class="outline-text-2" id="text-org18f5094">
327
+<div id="outline-container-org23abd36" class="outline-2">
328
+<h2 id="org23abd36">Readme</h2>
329
+<div class="outline-text-2" id="text-org23abd36">
330 330
 <p>
331 331
 After the system has installed a README file will be generated which contains passwords and some brief advice on using the installed systems. You can read this with the following commands:
332 332
 </p>
@@ -346,9 +346,9 @@ To exit you can either just close the terminal or use <b>CTRL-x CTRL-c</b> follo
346 346
 </p>
347 347
 </div>
348 348
 </div>
349
-<div id="outline-container-org14f4bd4" class="outline-2">
350
-<h2 id="org14f4bd4">Improving ssh security</h2>
351
-<div class="outline-text-2" id="text-org14f4bd4">
349
+<div id="outline-container-orgb27a404" class="outline-2">
350
+<h2 id="orgb27a404">Improving ssh security</h2>
351
+<div class="outline-text-2" id="text-orgb27a404">
352 352
 <p>
353 353
 To improve ssh security you can generate an ssh key pair on your system and then upload the public key to the Freedombone.
354 354
 </p>
@@ -398,9 +398,9 @@ If you wish to only use ssh keys then log in to the Freedombone, become the root
398 398
 </div>
399 399
 </div>
400 400
 
401
-<div id="outline-container-orga9ee65a" class="outline-2">
402
-<h2 id="orga9ee65a">Administrating the system via an onion address (Tor)</h2>
403
-<div class="outline-text-2" id="text-orga9ee65a">
401
+<div id="outline-container-org406b9c4" class="outline-2">
402
+<h2 id="org406b9c4">Administrating the system via an onion address (Tor)</h2>
403
+<div class="outline-text-2" id="text-org406b9c4">
404 404
 <p>
405 405
 You can also access your system via the Tor system using an onion address. To find out what the onion address for ssh access is you can do the following:
406 406
 </p>
@@ -442,104 +442,9 @@ Subsequently even if dynamic DNS isn't working you may still be able to administ
442 442
 </p>
443 443
 </div>
444 444
 </div>
445
-<div id="outline-container-orgaa7ee3f" class="outline-2">
446
-<h2 id="orgaa7ee3f">RSS Reader</h2>
447
-<div class="outline-text-2" id="text-orgaa7ee3f">
448
-<p>
449
-The way that RSS reading is set up on Freedombone gives you strong reading privacy. Not only is there onion routing between you and the server but also between the server and the source of the RSS feed. The only down side is that many RSS feeds are still http only, and so could be vulnerable to injection attacks, but it's expected that more of this will go to https in the foreseeable future due to a combination of growing recognition of security issues and systems like Let's Encrypt which make obtaining certificates much easier.
450
-</p>
451
-
452
-
453
-<div class="figure">
454
-<p><img src="images/rss_reader_mobile.jpg" alt="rss_reader_mobile.jpg" />
455
-</p>
456
-</div>
457
-</div>
458
-
459
-<div id="outline-container-org971df70" class="outline-3">
460
-<h3 id="org971df70">Finding the onion address</h3>
461
-<div class="outline-text-3" id="text-org971df70">
462
-<p>
463
-See the control panel for the RSS reader onion address.
464
-</p>
465
-
466
-<div class="org-src-container">
467
-<pre class="src src-bash">ssh username@domainname -p 2222
468
-</pre>
469
-</div>
470
-
471
-<p>
472
-Select <i>Administrator controls</i> then select the <b>About</b> screen.
473
-</p>
474
-
475
-<p>
476
-The RSS reader is accessible only via an onion address. This provides a reasonable degree of reading privacy, making it difficult for passive adversaries such as governments, corporations or criminals to create lists of sites which you are subscribed to.
477
-</p>
478
-
479
-<p>
480
-To set up the system open <a href="http://rss_reader_onion_address">http://rss_reader_onion_address</a> and log in with username <b>admin</b> and the password obtained either at the beginning of the install or from the README file in your home directory. You can then select the <b>Actions</b> menu and begin adding your feeds.
481
-</p>
482
-</div>
483
-</div>
484
-
485
-<div id="outline-container-orgbab6d5e" class="outline-3">
486
-<h3 id="orgbab6d5e">On mobile</h3>
487
-<div class="outline-text-3" id="text-orgbab6d5e">
488
-<p>
489
-To access the RSS reader from a mobile device you can install a Tor compatible browser such as OrFox. It will try to automatically change to the mobile version of the user interface. Remember to add the site to the NoScript whitelist, and you may also need to turn HTTPS Everywhere off.
490
-</p>
491
-
492
-<blockquote>
493
-<p>
494
-A note for the paranoid is that on mobile devices you get redirected to a different onion address which is specially set up for the mobile interface, so don't be alarmed that it looks like your connection is being hijacked.
495
-</p>
496
-</blockquote>
497
-</div>
498
-</div>
499
-<div id="outline-container-orgc5f38f9" class="outline-3">
500
-<h3 id="orgc5f38f9">With Emacs</h3>
501
-<div class="outline-text-3" id="text-orgc5f38f9">
502
-<p>
503
-If you are an Emacs user then you can also read your RSS feeds via the <a href="https://github.com/dk87/avandu">Avandu</a> mode.
504
-</p>
505
-
506
-<p>
507
-Add the following to your configuration, changing the address and password as appropriate.
508
-</p>
509
-
510
-<div class="org-src-container">
511
-<pre class="src src-emacs-lisp">(<span class="org-keyword">setq</span> avandu-tt-rss-api-url <span class="org-string">"http://rss_reader_onion_address/api/"</span>
512
-      avandu-user <span class="org-string">"admin"</span>
513
-      avandu-password <span class="org-string">"mypassword"</span>)
514
-</pre>
515
-</div>
516
-
517
-<p>
518
-If you don't already have Emacs set up to route through Tor then also add the following:
519
-</p>
520
-
521
-<div class="org-src-container">
522
-<pre class="src src-emacs-lisp">(<span class="org-keyword">setq</span> socks-noproxy '(<span class="org-string">"localhost"</span>))
523
-(<span class="org-keyword">require</span> '<span class="org-constant">socks</span>)
524
-(<span class="org-keyword">require</span> '<span class="org-constant">tls</span>)
525
-(<span class="org-keyword">setq</span> socks-server (list <span class="org-string">"Tor socks"</span> <span class="org-string">"localhost"</span> 9050 5))
526
-</pre>
527
-</div>
528
-
529
-<p>
530
-And ensure that the Tor daemon is installed:
531
-</p>
532
-
533
-<div class="org-src-container">
534
-<pre class="src src-bash">sudo apt-get install tor
535
-</pre>
536
-</div>
537
-</div>
538
-</div>
539
-</div>
540
-<div id="outline-container-org96f00d6" class="outline-2">
541
-<h2 id="org96f00d6">Git Projects</h2>
542
-<div class="outline-text-2" id="text-org96f00d6">
445
+<div id="outline-container-org2b5ad1e" class="outline-2">
446
+<h2 id="org2b5ad1e">Git Projects</h2>
447
+<div class="outline-text-2" id="text-org2b5ad1e">
543 448
 <p>
544 449
 Github is ok, but it's proprietary and funded by venture capital. If you been around on the internet for long enough then you know how this story eventually works itself out - i.e. badly for the users. It's really only a question of time. If you're a software developer or do things which involve the Git version control system then it's a good idea to become accustomed to hosting your own repositories, before the inevitable Github shitstorm happens.
545 450
 </p>
@@ -575,9 +480,9 @@ This will stop any spam accounts being created by random strangers or bots. You
575 480
 </p>
576 481
 </div>
577 482
 </div>
578
-<div id="outline-container-org902fe36" class="outline-2">
579
-<h2 id="org902fe36">Adding or removing users</h2>
580
-<div class="outline-text-2" id="text-org902fe36">
483
+<div id="outline-container-org6b00b78" class="outline-2">
484
+<h2 id="org6b00b78">Adding or removing users</h2>
485
+<div class="outline-text-2" id="text-org6b00b78">
581 486
 <p>
582 487
 Log into the system with:
583 488
 </p>
@@ -605,9 +510,9 @@ control
605 510
 </div>
606 511
 </div>
607 512
 
608
-<div id="outline-container-orgee498e5" class="outline-2">
609
-<h2 id="orgee498e5">Blocking Ads</h2>
610
-<div class="outline-text-2" id="text-orgee498e5">
513
+<div id="outline-container-org5f849d3" class="outline-2">
514
+<h2 id="org5f849d3">Blocking Ads</h2>
515
+<div class="outline-text-2" id="text-org5f849d3">
611 516
 <p>
612 517
 Everyone except for advertisers hates adverts. Not only are they annoying, but they can consume a lot of bandwidth, be a privacy problem in terms of allowing companies to track your browsing habits and also any badly written scripts they contain may introduce exploitable security holes. Also if you're poor then adverts often make you want things that you can't have.
613 518
 </p>
@@ -621,9 +526,9 @@ Also don't expect perfection. Though many ads may be blocked by this system some
621 526
 </p>
622 527
 </div>
623 528
 
624
-<div id="outline-container-org30be587" class="outline-3">
625
-<h3 id="org30be587">Set a static IP address</h3>
626
-<div class="outline-text-3" id="text-org30be587">
529
+<div id="outline-container-orgc118780" class="outline-3">
530
+<h3 id="orgc118780">Set a static IP address</h3>
531
+<div class="outline-text-3" id="text-orgc118780">
627 532
 <p>
628 533
 Ensure that your system has a static local IP address (typically 192.168..) using the option on the control panel. You will also need to know the IP address of your internet router, which is usually <b>192.168.1.1</b> or <b>192.168.1.254</b>.
629 534
 </p>
@@ -634,9 +539,9 @@ When that's done select <b>About this system</b> from the control panel and see
634 539
 </div>
635 540
 </div>
636 541
 
637
-<div id="outline-container-org4da7017" class="outline-3">
638
-<h3 id="org4da7017">On each client system within your local network</h3>
639
-<div class="outline-text-3" id="text-org4da7017">
542
+<div id="outline-container-orgf236d40" class="outline-3">
543
+<h3 id="orgf236d40">On each client system within your local network</h3>
544
+<div class="outline-text-3" id="text-orgf236d40">
640 545
 <div class="org-src-container">
641 546
 <pre class="src src-bash">sudo chattr -i /etc/resolv.conf
642 547
 sudo nano /etc/resolv.conf
@@ -663,9 +568,9 @@ Normally <i>resolv.conf</i> will be overwritten every time your reboot, but you
663 568
 </div>
664 569
 </div>
665 570
 
666
-<div id="outline-container-orgdf8640b" class="outline-3">
667
-<h3 id="orgdf8640b">On your internet router</h3>
668
-<div class="outline-text-3" id="text-orgdf8640b">
571
+<div id="outline-container-orge601ffa" class="outline-3">
572
+<h3 id="orge601ffa">On your internet router</h3>
573
+<div class="outline-text-3" id="text-orge601ffa">
669 574
 <p>
670 575
 If you can access the settings on your local internet router then this is the simplest way to provide ad blocking for all devices which connect to it. Unfortunately some router models don't let you edit the DNS settings and if that's the case you might want to consider getting a different router.
671 576
 </p>
@@ -675,9 +580,9 @@ Edit the DNS settings and add the IPv4 address which you got from the control pa
675 580
 </p>
676 581
 </div>
677 582
 
678
-<div id="outline-container-org3817145" class="outline-4">
679
-<h4 id="org3817145">LibreCMC</h4>
680
-<div class="outline-text-4" id="text-org3817145">
583
+<div id="outline-container-org0d5eccb" class="outline-4">
584
+<h4 id="org0d5eccb">LibreCMC</h4>
585
+<div class="outline-text-4" id="text-org0d5eccb">
681 586
 <p>
682 587
 On a router running LibreCMC from the <b>Network</b> menu select <b>DHCP and DNS</b>. Enter the static IP address of your Freedombone system within <b>DNS Forwardings</b>, then at the bottom of the page click on <b>Save &amp; Apply</b>. Any devices which connect to your router will now have ad blocking.
683 588
 </p>
@@ -685,9 +590,9 @@ On a router running LibreCMC from the <b>Network</b> menu select <b>DHCP and DNS
685 590
 </div>
686 591
 </div>
687 592
 
688
-<div id="outline-container-org88c9019" class="outline-3">
689
-<h3 id="org88c9019">Configuring block lists</h3>
690
-<div class="outline-text-3" id="text-org88c9019">
593
+<div id="outline-container-orgbfa50dc" class="outline-3">
594
+<h3 id="orgbfa50dc">Configuring block lists</h3>
595
+<div class="outline-text-3" id="text-orgbfa50dc">
691 596
 <p>
692 597
 You can configure the block lists which the system uses by going to the <b>administrator control panel</b>, selecting <b>App Settings</b> then choosing <b>pihole</b>. You can also add any extra domain names to the whitelist if they're being wrongly blocked or to the blacklist if they're not blocked by the current lists.
693 598
 </p>