Mediagoblin documentation

This commit is contained in:
Bob Mottram 2016-12-25 11:58:25 +00:00
parent 3adc321f47
commit 31cd63be95
7 changed files with 486 additions and 83 deletions

View File

@ -0,0 +1,47 @@
#+TITLE:
#+AUTHOR: Bob Mottram
#+EMAIL: bob@freedombone.net
#+KEYWORDS: freedombone, mediagoblin
#+DESCRIPTION: How to use Mediagoblin
#+OPTIONS: ^:nil toc:nil
#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="freedombone.css" />
#+BEGIN_CENTER
[[file:images/logo.png]]
#+END_CENTER
#+BEGIN_EXPORT html
<center>
<h1>Mediagoblin</h1>
</center>
#+END_EXPORT
With Mediagoblin you can host video and audio content in a similar manner to the proprietary systems such as YouTube and SoundCloud. This system supports free media formats such as /webm/, /ogv/ and /ogg/.
When hosting media files you should take into consideration that since anyone on the internet can view your content then this could significantly increase your bandwidth usage and overall strain on the server. If you are hosting anything which might become popular then it's a good idea to set up the Freedombone system on an old laptop rather than something like a Beaglebone Black. However, as small single board computers become more powerful with more RAM and CPU cores being able to stream media to many clients should be far less of a problem.
* Installation
Log into your system with:
#+begin_src bash
ssh myusername@mydomain -p 2222
#+end_src
Using cursor keys, space bar and Enter key select *Administrator controls* and type in your password.
Select *Add/Remove Apps* then *mediagoblin*. You will then be asked for a domain name and if you are using FreeDNS also the code for the domain which can be found under *Dynamic DNS* on the FreeDNS site (the random string from "/quick cron example/" which appears after /update.php?/ and before />>/). For more details on obtaining a domain and making it accessible via dynamic DNS see the [[./faq.html][FAQ]]. You can also add a welcome message and background picture URL if you wish, although those things are optional. Typically the domain name you use will be a subdomain, such as /media.mydomainname.net/. It will need to be a domain which you have bought somewhere and own and not one of the FreeDNS subdomains, otherwise you won't be able to get a SSL/TLS certificate for it.
After the install has completed go to *Security settings* and select *Create a new Let's Encrypt certificate* and enter the domain name that you are using for Mediagoblin. If you're using the "onion only" version of the system then you don't need to do this. If the certificate is obtained successfully then you will see a congratulations message.
* Initial setup
#+BEGIN_CENTER
[[file:images/mediagoblin.jpg]]
#+END_CENTER
If you have just obtained a Lets Encrypt certificate as above then go to *About* on the administrator control panel and you should see your Mediagoblin domain listed there along with an onion address. You can then navigate to your site in a browser.
Create an account and verify it by returning to the *user control panel* opening the email client and looking for the Mediagoblin verification email. It will contain a link that you should follow to activate the account.
You should repeat that for however many accounts you want on the system and then go back to the *administrator control panel*, select *App Settings* then *mediagoblin* and turn off new registrations. This will prevent millions of spam accounts from being created by internet bots.

View File

@ -75,6 +75,10 @@ Make your photo albums available on the web.
Modern email client which supports GPG encryption. Modern email client which supports GPG encryption.
[[./app_mailpile.html][How to use it]] [[./app_mailpile.html][How to use it]]
* Mediagoblin
Publicly host video and audio files so that you don't need to use YouTube/Vimeo/etc.
[[./app_mediagoblin.html][How to use it]]
* Mumble * Mumble
The popular VoIP and text chat system. Say goodbye to old-fashioned telephony conferences with silly dial codes. Also works well on mobile. The popular VoIP and text chat system. Say goodbye to old-fashioned telephony conferences with silly dial codes. Also works well on mobile.

View File

@ -28,6 +28,7 @@
| [[./app_htmly.html][Blogging with HTMLy]] | | [[./app_htmly.html][Blogging with HTMLy]] |
| [[./app_hubzilla.html][Social Network]] | | [[./app_hubzilla.html][Social Network]] |
| [[./app_lychee.html][Photo albums]] | | [[./app_lychee.html][Photo albums]] |
| [[./app_mediagoblin.html][Hosting video and audio content]] |
| [[./app_dokuwiki.html][Wiki]] | | [[./app_dokuwiki.html][Wiki]] |
| [[./app_etherpad.html][Collaborative document editing]] | | [[./app_etherpad.html][Collaborative document editing]] |
| [[./app_irc.html][Multi-user chat with IRC]] | | [[./app_irc.html][Multi-user chat with IRC]] |

BIN
img/mediagoblin.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -0,0 +1,335 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2016-12-25 Sun 11:54 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title></title>
<meta name="generator" content="Org mode" />
<meta name="author" content="Bob Mottram" />
<meta name="description" content="How to use Mediagoblin"
/>
<meta name="keywords" content="freedombone, mediagoblin" />
<style type="text/css">
<!--/*--><![CDATA[/*><!--*/
.title { text-align: center;
margin-bottom: .2em; }
.subtitle { text-align: center;
font-size: medium;
font-weight: bold;
margin-top:0; }
.todo { font-family: monospace; color: red; }
.done { font-family: monospace; color: green; }
.priority { font-family: monospace; color: orange; }
.tag { background-color: #eee; font-family: monospace;
padding: 2px; font-size: 80%; font-weight: normal; }
.timestamp { color: #bebebe; }
.timestamp-kwd { color: #5f9ea0; }
.org-right { margin-left: auto; margin-right: 0px; text-align: right; }
.org-left { margin-left: 0px; margin-right: auto; text-align: left; }
.org-center { margin-left: auto; margin-right: auto; text-align: center; }
.underline { text-decoration: underline; }
#postamble p, #preamble p { font-size: 90%; margin: .2em; }
p.verse { margin-left: 3%; }
pre {
border: 1px solid #ccc;
box-shadow: 3px 3px 3px #eee;
padding: 8pt;
font-family: monospace;
overflow: auto;
margin: 1.2em;
}
pre.src {
position: relative;
overflow: visible;
padding-top: 1.2em;
}
pre.src:before {
display: none;
position: absolute;
background-color: white;
top: -10px;
right: 10px;
padding: 3px;
border: 1px solid black;
}
pre.src:hover:before { display: inline;}
/* Languages per Org manual */
pre.src-asymptote:before { content: 'Asymptote'; }
pre.src-awk:before { content: 'Awk'; }
pre.src-C:before { content: 'C'; }
/* pre.src-C++ doesn't work in CSS */
pre.src-clojure:before { content: 'Clojure'; }
pre.src-css:before { content: 'CSS'; }
pre.src-D:before { content: 'D'; }
pre.src-ditaa:before { content: 'ditaa'; }
pre.src-dot:before { content: 'Graphviz'; }
pre.src-calc:before { content: 'Emacs Calc'; }
pre.src-emacs-lisp:before { content: 'Emacs Lisp'; }
pre.src-fortran:before { content: 'Fortran'; }
pre.src-gnuplot:before { content: 'gnuplot'; }
pre.src-haskell:before { content: 'Haskell'; }
pre.src-java:before { content: 'Java'; }
pre.src-js:before { content: 'Javascript'; }
pre.src-latex:before { content: 'LaTeX'; }
pre.src-ledger:before { content: 'Ledger'; }
pre.src-lisp:before { content: 'Lisp'; }
pre.src-lilypond:before { content: 'Lilypond'; }
pre.src-lua:before { content: 'Lua'; }
pre.src-matlab:before { content: 'MATLAB'; }
pre.src-mscgen:before { content: 'Mscgen'; }
pre.src-ocaml:before { content: 'Objective Caml'; }
pre.src-octave:before { content: 'Octave'; }
pre.src-org:before { content: 'Org mode'; }
pre.src-oz:before { content: 'OZ'; }
pre.src-plantuml:before { content: 'Plantuml'; }
pre.src-processing:before { content: 'Processing.js'; }
pre.src-python:before { content: 'Python'; }
pre.src-R:before { content: 'R'; }
pre.src-ruby:before { content: 'Ruby'; }
pre.src-sass:before { content: 'Sass'; }
pre.src-scheme:before { content: 'Scheme'; }
pre.src-screen:before { content: 'Gnu Screen'; }
pre.src-sed:before { content: 'Sed'; }
pre.src-sh:before { content: 'shell'; }
pre.src-sql:before { content: 'SQL'; }
pre.src-sqlite:before { content: 'SQLite'; }
/* additional languages in org.el's org-babel-load-languages alist */
pre.src-forth:before { content: 'Forth'; }
pre.src-io:before { content: 'IO'; }
pre.src-J:before { content: 'J'; }
pre.src-makefile:before { content: 'Makefile'; }
pre.src-maxima:before { content: 'Maxima'; }
pre.src-perl:before { content: 'Perl'; }
pre.src-picolisp:before { content: 'Pico Lisp'; }
pre.src-scala:before { content: 'Scala'; }
pre.src-shell:before { content: 'Shell Script'; }
pre.src-ebnf2ps:before { content: 'ebfn2ps'; }
/* additional language identifiers per "defun org-babel-execute"
in ob-*.el */
pre.src-cpp:before { content: 'C++'; }
pre.src-abc:before { content: 'ABC'; }
pre.src-coq:before { content: 'Coq'; }
pre.src-groovy:before { content: 'Groovy'; }
/* additional language identifiers from org-babel-shell-names in
ob-shell.el: ob-shell is the only babel language using a lambda to put
the execution function name together. */
pre.src-bash:before { content: 'bash'; }
pre.src-csh:before { content: 'csh'; }
pre.src-ash:before { content: 'ash'; }
pre.src-dash:before { content: 'dash'; }
pre.src-ksh:before { content: 'ksh'; }
pre.src-mksh:before { content: 'mksh'; }
pre.src-posh:before { content: 'posh'; }
/* Additional Emacs modes also supported by the LaTeX listings package */
pre.src-ada:before { content: 'Ada'; }
pre.src-asm:before { content: 'Assembler'; }
pre.src-caml:before { content: 'Caml'; }
pre.src-delphi:before { content: 'Delphi'; }
pre.src-html:before { content: 'HTML'; }
pre.src-idl:before { content: 'IDL'; }
pre.src-mercury:before { content: 'Mercury'; }
pre.src-metapost:before { content: 'MetaPost'; }
pre.src-modula-2:before { content: 'Modula-2'; }
pre.src-pascal:before { content: 'Pascal'; }
pre.src-ps:before { content: 'PostScript'; }
pre.src-prolog:before { content: 'Prolog'; }
pre.src-simula:before { content: 'Simula'; }
pre.src-tcl:before { content: 'tcl'; }
pre.src-tex:before { content: 'TeX'; }
pre.src-plain-tex:before { content: 'Plain TeX'; }
pre.src-verilog:before { content: 'Verilog'; }
pre.src-vhdl:before { content: 'VHDL'; }
pre.src-xml:before { content: 'XML'; }
pre.src-nxml:before { content: 'XML'; }
/* add a generic configuration mode; LaTeX export needs an additional
(add-to-list 'org-latex-listings-langs '(conf " ")) in .emacs */
pre.src-conf:before { content: 'Configuration File'; }
table { border-collapse:collapse; }
caption.t-above { caption-side: top; }
caption.t-bottom { caption-side: bottom; }
td, th { vertical-align:top; }
th.org-right { text-align: center; }
th.org-left { text-align: center; }
th.org-center { text-align: center; }
td.org-right { text-align: right; }
td.org-left { text-align: left; }
td.org-center { text-align: center; }
dt { font-weight: bold; }
.footpara { display: inline; }
.footdef { margin-bottom: 1em; }
.figure { padding: 1em; }
.figure p { text-align: center; }
.inlinetask {
padding: 10px;
border: 2px solid gray;
margin: 10px;
background: #ffffcc;
}
#org-div-home-and-up
{ text-align: right; font-size: 70%; white-space: nowrap; }
textarea { overflow-x: auto; }
.linenr { font-size: smaller }
.code-highlighted { background-color: #ffff00; }
.org-info-js_info-navigation { border-style: none; }
#org-info-js_console-label
{ font-size: 10px; font-weight: bold; white-space: nowrap; }
.org-info-js_search-highlight
{ background-color: #ffff00; color: #000000; font-weight: bold; }
.org-svg { width: 90%; }
/*]]>*/-->
</style>
<link rel="stylesheet" type="text/css" href="freedombone.css" />
<script type="text/javascript">
/*
@licstart The following is the entire license notice for the
JavaScript code in this tag.
Copyright (C) 2012-2013 Free Software Foundation, Inc.
The JavaScript code in this tag is free software: you can
redistribute it and/or modify it under the terms of the GNU
General Public License (GNU GPL) as published by the Free Software
Foundation, either version 3 of the License, or (at your option)
any later version. The code is distributed WITHOUT ANY WARRANTY;
without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU GPL for more details.
As additional permission under GNU GPL version 3 section 7, you
may distribute non-source (e.g., minimized or compacted) forms of
that code without the copy of the GNU GPL normally required by
section 4, provided you include this license notice and a URL
through which recipients can access the Corresponding Source.
@licend The above is the entire license notice
for the JavaScript code in this tag.
*/
<!--/*--><![CDATA[/*><!--*/
function CodeHighlightOn(elem, id)
{
var target = document.getElementById(id);
if(null != target) {
elem.cacheClassElem = elem.className;
elem.cacheClassTarget = target.className;
target.className = "code-highlighted";
elem.className = "code-highlighted";
}
}
function CodeHighlightOff(elem, id)
{
var target = document.getElementById(id);
if(elem.cacheClassElem)
elem.className = elem.cacheClassElem;
if(elem.cacheClassTarget)
target.className = elem.cacheClassTarget;
}
/*]]>*///-->
</script>
</head>
<body>
<div id="preamble" class="status">
<a name="top" id="top"></a>
</div>
<div id="content">
<div class="org-center">
<div class="figure">
<p><img src="images/logo.png" alt="logo.png" />
</p>
</div>
</div>
<center>
<h1>Mediagoblin</h1>
</center>
<p>
With Mediagoblin you can host video and audio content in a similar manner to the proprietary systems such as YouTube and SoundCloud. This system supports free media formats such as <i>webm</i>, <i>ogv</i> and <i>ogg</i>.
</p>
<p>
When hosting media files you should take into consideration that since anyone on the internet can view your content then this could significantly increase your bandwidth usage and overall strain on the server. If you are hosting anything which might become popular then it's a good idea to set up the Freedombone system on an old laptop rather than something like a Beaglebone Black. However, as small single board computers become more powerful with more RAM and CPU cores being able to stream media to many clients should be far less of a problem.
</p>
<div id="outline-container-org8d1d522" class="outline-2">
<h2 id="org8d1d522">Installation</h2>
<div class="outline-text-2" id="text-org8d1d522">
<p>
Log into your system with:
</p>
<div class="org-src-container">
<pre class="src src-bash">ssh myusername@mydomain -p 2222
</pre>
</div>
<p>
Using cursor keys, space bar and Enter key select <b>Administrator controls</b> and type in your password.
</p>
<p>
Select <b>Add/Remove Apps</b> then <b>mediagoblin</b>. You will then be asked for a domain name and if you are using FreeDNS also the code for the domain which can be found under <b>Dynamic DNS</b> on the FreeDNS site (the random string from "<i>quick cron example</i>" which appears after <i>update.php?</i> and before <i>&gt;&gt;</i>). For more details on obtaining a domain and making it accessible via dynamic DNS see the <a href="./faq.html">FAQ</a>. You can also add a welcome message and background picture URL if you wish, although those things are optional. Typically the domain name you use will be a subdomain, such as <i>media.mydomainname.net</i>. It will need to be a domain which you have bought somewhere and own and not one of the FreeDNS subdomains, otherwise you won't be able to get a SSL/TLS certificate for it.
</p>
<p>
After the install has completed go to <b>Security settings</b> and select <b>Create a new Let's Encrypt certificate</b> and enter the domain name that you are using for Mediagoblin. If you're using the "onion only" version of the system then you don't need to do this. If the certificate is obtained successfully then you will see a congratulations message.
</p>
</div>
</div>
<div id="outline-container-orga30e9ca" class="outline-2">
<h2 id="orga30e9ca">Initial setup</h2>
<div class="outline-text-2" id="text-orga30e9ca">
<div class="org-center">
<div class="figure">
<p><img src="images/mediagoblin.jpg" alt="mediagoblin.jpg" />
</p>
</div>
</div>
<p>
If you have just obtained a Lets Encrypt certificate as above then go to <b>About</b> on the administrator control panel and you should see your Mediagoblin domain listed there along with an onion address. You can then navigate to your site in a browser.
</p>
<p>
Create an account and verify it by returning to the <b>user control panel</b> opening the email client and looking for the Mediagoblin verification email. It will contain a link that you should follow to activate the account.
</p>
<p>
You should repeat that for however many accounts you want on the system and then go back to the <b>administrator control panel</b>, select <b>App Settings</b> then <b>mediagoblin</b> and turn off new registrations. This will prevent millions of spam accounts from being created by internet bots.
</p>
</div>
</div>
</div>
<div id="postamble" class="status">
<style type="text/css">
.back-to-top {
position: fixed;
bottom: 2em;
right: 0px;
text-decoration: none;
color: #000000;
background-color: rgba(235, 235, 235, 0.80);
font-size: 12px;
padding: 1em;
display: none;
}
.back-to-top:hover {
background-color: rgba(135, 135, 135, 0.50);
}
</style>
<div class="back-to-top">
<a href="#top">Back to top</a> | <a href="mailto:bob@freedombone.net">E-mail me</a>
</div>
</div>
</body>
</html>

View File

@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head> <head>
<!-- 2016-12-20 Tue 15:34 --> <!-- 2016-12-25 Sun 11:57 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1" />
<title></title> <title></title>
@ -263,9 +263,9 @@ The base install of the system just contains an email server and Mutt client, bu
</div> </div>
</div> </div>
<div id="outline-container-org06af72a" class="outline-2"> <div id="outline-container-org99fc092" class="outline-2">
<h2 id="org06af72a">DLNA</h2> <h2 id="org99fc092">DLNA</h2>
<div class="outline-text-2" id="text-org06af72a"> <div class="outline-text-2" id="text-org99fc092">
<p> <p>
Enables you to use the system as a music server which any DLNA compatible devices can connect to within your home network. Enables you to use the system as a music server which any DLNA compatible devices can connect to within your home network.
</p> </p>
@ -275,9 +275,9 @@ Enables you to use the system as a music server which any DLNA compatible device
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-org82e3b5a" class="outline-2"> <div id="outline-container-org30dfa23" class="outline-2">
<h2 id="org82e3b5a">Dokuwiki</h2> <h2 id="org30dfa23">Dokuwiki</h2>
<div class="outline-text-2" id="text-org82e3b5a"> <div class="outline-text-2" id="text-org30dfa23">
<p> <p>
A databaseless wiki system. A databaseless wiki system.
</p> </p>
@ -287,9 +287,9 @@ A databaseless wiki system.
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-org9c90fa1" class="outline-2"> <div id="outline-container-org0b27a96" class="outline-2">
<h2 id="org9c90fa1">Emacs</h2> <h2 id="org0b27a96">Emacs</h2>
<div class="outline-text-2" id="text-org9c90fa1"> <div class="outline-text-2" id="text-org0b27a96">
<p> <p>
If you use the Mutt client to read your email then this will set it up to use emacs for composing new mail. If you use the Mutt client to read your email then this will set it up to use emacs for composing new mail.
</p> </p>
@ -299,9 +299,9 @@ If you use the Mutt client to read your email then this will set it up to use em
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-org2a81d3f" class="outline-2"> <div id="outline-container-org309055f" class="outline-2">
<h2 id="org2a81d3f">Etherpad</h2> <h2 id="org309055f">Etherpad</h2>
<div class="outline-text-2" id="text-org2a81d3f"> <div class="outline-text-2" id="text-org309055f">
<p> <p>
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. 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.
</p> </p>
@ -311,9 +311,9 @@ Collaborate on creating documents in real time. Maybe you're planning a holiday
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-org7701c14" class="outline-2"> <div id="outline-container-org848aced" class="outline-2">
<h2 id="org7701c14">Ghost</h2> <h2 id="org848aced">Ghost</h2>
<div class="outline-text-2" id="text-org7701c14"> <div class="outline-text-2" id="text-org848aced">
<p> <p>
Modern looking blogging system. Modern looking blogging system.
</p> </p>
@ -323,9 +323,9 @@ Modern looking blogging system.
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-orgb096bfe" class="outline-2"> <div id="outline-container-org2e44bb6" class="outline-2">
<h2 id="orgb096bfe">GNU Social</h2> <h2 id="org2e44bb6">GNU Social</h2>
<div class="outline-text-2" id="text-orgb096bfe"> <div class="outline-text-2" id="text-org2e44bb6">
<p> <p>
Federated social network. You can "<i>remote follow</i>" other users within the GNU Social federation. Federated social network. You can "<i>remote follow</i>" other users within the GNU Social federation.
</p> </p>
@ -335,9 +335,9 @@ Federated social network. You can "<i>remote follow</i>" other users within the
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-org9de96f8" class="outline-2"> <div id="outline-container-orgb8a47c3" class="outline-2">
<h2 id="org9de96f8">Gogs</h2> <h2 id="orgb8a47c3">Gogs</h2>
<div class="outline-text-2" id="text-org9de96f8"> <div class="outline-text-2" id="text-orgb8a47c3">
<p> <p>
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. 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.
</p> </p>
@ -347,9 +347,9 @@ Lightweight git project hosting system. You can mirror projects from Github, or
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-orgfeb902f" class="outline-2"> <div id="outline-container-org572987d" class="outline-2">
<h2 id="orgfeb902f">HTMLy</h2> <h2 id="org572987d">HTMLy</h2>
<div class="outline-text-2" id="text-orgfeb902f"> <div class="outline-text-2" id="text-org572987d">
<p> <p>
Databaseless blogging system. Quite simple and with a markdown-like format. Databaseless blogging system. Quite simple and with a markdown-like format.
</p> </p>
@ -359,9 +359,9 @@ Databaseless blogging system. Quite simple and with a markdown-like format.
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-org53f98d5" class="outline-2"> <div id="outline-container-orgff7ac54" class="outline-2">
<h2 id="org53f98d5">Hubzilla</h2> <h2 id="orgff7ac54">Hubzilla</h2>
<div class="outline-text-2" id="text-org53f98d5"> <div class="outline-text-2" id="text-orgff7ac54">
<p> <p>
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. 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.
</p> </p>
@ -371,9 +371,9 @@ Web publishing platform with social network like features and good privacy contr
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-org04b2461" class="outline-2"> <div id="outline-container-org0de0265" class="outline-2">
<h2 id="org04b2461">IRC Server (ngirc)</h2> <h2 id="org0de0265">IRC Server (ngirc)</h2>
<div class="outline-text-2" id="text-org04b2461"> <div class="outline-text-2" id="text-org0de0265">
<p> <p>
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. 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.
</p> </p>
@ -383,18 +383,18 @@ Run your own IRC chat channel which can be secured with a password and accessibl
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-org01bf547" class="outline-2"> <div id="outline-container-org5199ade" class="outline-2">
<h2 id="org01bf547">Jitsi Meet</h2> <h2 id="org5199ade">Jitsi Meet</h2>
<div class="outline-text-2" id="text-org01bf547"> <div class="outline-text-2" id="text-org5199ade">
<p> <p>
Experimental WebRTC video conferencing system, similar to Google Hangouts. This may not be fully functional, but is hoped to be in the near future. Experimental WebRTC video conferencing system, similar to Google Hangouts. This may not be fully functional, but is hoped to be in the near future.
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-org4fa4c1f" class="outline-2"> <div id="outline-container-org12a5edf" class="outline-2">
<h2 id="org4fa4c1f">Lychee</h2> <h2 id="org12a5edf">Lychee</h2>
<div class="outline-text-2" id="text-org4fa4c1f"> <div class="outline-text-2" id="text-org12a5edf">
<p> <p>
Make your photo albums available on the web. Make your photo albums available on the web.
</p> </p>
@ -404,9 +404,9 @@ Make your photo albums available on the web.
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-org021659d" class="outline-2"> <div id="outline-container-org3a7b9cc" class="outline-2">
<h2 id="org021659d">Mailpile</h2> <h2 id="org3a7b9cc">Mailpile</h2>
<div class="outline-text-2" id="text-org021659d"> <div class="outline-text-2" id="text-org3a7b9cc">
<p> <p>
Modern email client which supports GPG encryption. Modern email client which supports GPG encryption.
</p> </p>
@ -416,9 +416,21 @@ Modern email client which supports GPG encryption.
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-orgbf29cc7" class="outline-2"> <div id="outline-container-org202fe91" class="outline-2">
<h2 id="orgbf29cc7">Mumble</h2> <h2 id="org202fe91">Mediagoblin</h2>
<div class="outline-text-2" id="text-orgbf29cc7"> <div class="outline-text-2" id="text-org202fe91">
<p>
Publicly host video and audio files so that you don't need to use YouTube/Vimeo/etc.
</p>
<p>
<a href="./app_mediagoblin.html">How to use it</a>
</p>
</div>
</div>
<div id="outline-container-org55d4ac3" class="outline-2">
<h2 id="org55d4ac3">Mumble</h2>
<div class="outline-text-2" id="text-org55d4ac3">
<p> <p>
The popular VoIP and text chat system. Say goodbye to old-fashioned telephony conferences with silly dial codes. Also works well on mobile. The popular VoIP and text chat system. Say goodbye to old-fashioned telephony conferences with silly dial codes. Also works well on mobile.
</p> </p>
@ -428,9 +440,9 @@ The popular VoIP and text chat system. Say goodbye to old-fashioned telephony co
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-org6bca095" class="outline-2"> <div id="outline-container-org5b1d6b5" class="outline-2">
<h2 id="org6bca095">PI-Hole</h2> <h2 id="org5b1d6b5">PI-Hole</h2>
<div class="outline-text-2" id="text-org6bca095"> <div class="outline-text-2" id="text-org5b1d6b5">
<p> <p>
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. 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.
</p> </p>
@ -440,9 +452,9 @@ The black hole for web adverts. Block adverts at the domain name level within yo
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-orgbd5ecde" class="outline-2"> <div id="outline-container-orgcb8c767" class="outline-2">
<h2 id="orgbd5ecde">PostActiv</h2> <h2 id="orgcb8c767">PostActiv</h2>
<div class="outline-text-2" id="text-orgbd5ecde"> <div class="outline-text-2" id="text-orgcb8c767">
<p> <p>
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. 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.
</p> </p>
@ -452,9 +464,9 @@ An alternative federated social networking system compatible with GNU Social. It
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-org93e655a" class="outline-2"> <div id="outline-container-orgba474e0" class="outline-2">
<h2 id="org93e655a">Radicale</h2> <h2 id="orgba474e0">Radicale</h2>
<div class="outline-text-2" id="text-org93e655a"> <div class="outline-text-2" id="text-orgba474e0">
<p> <p>
Calendar system compatible with CalDAV and CardDAV. Synch your calendar events easily and securely across all your devices. Calendar system compatible with CalDAV and CardDAV. Synch your calendar events easily and securely across all your devices.
</p> </p>
@ -464,9 +476,9 @@ Calendar system compatible with CalDAV and CardDAV. Synch your calendar events e
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-orga5d4e72" class="outline-2"> <div id="outline-container-org0d2114e" class="outline-2">
<h2 id="orga5d4e72">tt-rss</h2> <h2 id="org0d2114e">tt-rss</h2>
<div class="outline-text-2" id="text-orga5d4e72"> <div class="outline-text-2" id="text-org0d2114e">
<p> <p>
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. 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.
</p> </p>
@ -476,9 +488,9 @@ Private RSS reader. Pulls in RSS/Atom feeds via Tor and is only accessible via a
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-org3ff38e9" class="outline-2"> <div id="outline-container-org66ade88" class="outline-2">
<h2 id="org3ff38e9">Syncthing</h2> <h2 id="org66ade88">Syncthing</h2>
<div class="outline-text-2" id="text-org3ff38e9"> <div class="outline-text-2" id="text-org66ade88">
<p> <p>
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. 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.
</p> </p>
@ -488,9 +500,9 @@ Possibly the best way to synchronise files across all of your devices. Once it h
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-org0629dc7" class="outline-2"> <div id="outline-container-org15d6e56" class="outline-2">
<h2 id="org0629dc7">Tox</h2> <h2 id="org15d6e56">Tox</h2>
<div class="outline-text-2" id="text-org0629dc7"> <div class="outline-text-2" id="text-org15d6e56">
<p> <p>
Client and bootstrap node for the Tox chat/VoIP system. Client and bootstrap node for the Tox chat/VoIP system.
</p> </p>
@ -500,9 +512,9 @@ Client and bootstrap node for the Tox chat/VoIP system.
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-org058f776" class="outline-2"> <div id="outline-container-org407e108" class="outline-2">
<h2 id="org058f776">Turtl</h2> <h2 id="org407e108">Turtl</h2>
<div class="outline-text-2" id="text-org058f776"> <div class="outline-text-2" id="text-org407e108">
<p> <p>
A system for privately creating and sharing notes and images, similar to Evernote but without the spying. A system for privately creating and sharing notes and images, similar to Evernote but without the spying.
</p> </p>
@ -512,18 +524,18 @@ A system for privately creating and sharing notes and images, similar to Evernot
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-orgb8da554" class="outline-2"> <div id="outline-container-orgd65bf2e" class="outline-2">
<h2 id="orgb8da554">Vim</h2> <h2 id="orgd65bf2e">Vim</h2>
<div class="outline-text-2" id="text-orgb8da554"> <div class="outline-text-2" id="text-orgd65bf2e">
<p> <p>
If you use the Mutt client to read your email then this will set it up to use vim for composing new mail. If you use the Mutt client to read your email then this will set it up to use vim for composing new mail.
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-org286851f" class="outline-2"> <div id="outline-container-org14baf40" class="outline-2">
<h2 id="org286851f">XMPP</h2> <h2 id="org14baf40">XMPP</h2>
<div class="outline-text-2" id="text-org286851f"> <div class="outline-text-2" id="text-org14baf40">
<p> <p>
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. 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.
</p> </p>

View File

@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head> <head>
<!-- 2016-12-20 Tue 16:16 --> <!-- 2016-12-25 Sun 11:58 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1" />
<title></title> <title></title>
@ -255,11 +255,11 @@ for the JavaScript code in this tag.
</colgroup> </colgroup>
<tbody> <tbody>
<tr> <tr>
<td class="org-left"><a href="#org0e58259">Improving security</a></td> <td class="org-left"><a href="#orgc3c6c7f">Improving security</a></td>
</tr> </tr>
<tr> <tr>
<td class="org-left"><a href="#org2189c3f">Administrating the system via an onion address (Tor)</a></td> <td class="org-left"><a href="#org6449633">Administrating the system via an onion address (Tor)</a></td>
</tr> </tr>
<tr> <tr>
@ -302,6 +302,10 @@ for the JavaScript code in this tag.
<td class="org-left"><a href="./app_lychee.html">Photo albums</a></td> <td class="org-left"><a href="./app_lychee.html">Photo albums</a></td>
</tr> </tr>
<tr>
<td class="org-left"><a href="./app_mediagoblin.html">Hosting video and audio content</a></td>
</tr>
<tr> <tr>
<td class="org-left"><a href="./app_dokuwiki.html">Wiki</a></td> <td class="org-left"><a href="./app_dokuwiki.html">Wiki</a></td>
</tr> </tr>
@ -343,7 +347,7 @@ for the JavaScript code in this tag.
</tr> </tr>
<tr> <tr>
<td class="org-left"><a href="#org6c689d0">Adding or removing users</a></td> <td class="org-left"><a href="#org12697d1">Adding or removing users</a></td>
</tr> </tr>
<tr> <tr>
@ -356,9 +360,9 @@ for the JavaScript code in this tag.
</tbody> </tbody>
</table> </table>
<div id="outline-container-org0e58259" class="outline-2"> <div id="outline-container-orgc3c6c7f" class="outline-2">
<h2 id="org0e58259">Improving security</h2> <h2 id="orgc3c6c7f">Improving security</h2>
<div class="outline-text-2" id="text-org0e58259"> <div class="outline-text-2" id="text-orgc3c6c7f">
<p> <p>
It's a lot more secure to log in to the Freedombone system using ssh keys rather than with a password. You can set that up by first running: It's a lot more secure to log in to the Freedombone system using ssh keys rather than with a password. You can set that up by first running:
</p> </p>
@ -385,9 +389,9 @@ You'll need to make sure that you have a copy of the ~/.ssh directory on your lo
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-org2189c3f" class="outline-2"> <div id="outline-container-org6449633" class="outline-2">
<h2 id="org2189c3f">Administrating the system via an onion address (Tor)</h2> <h2 id="org6449633">Administrating the system via an onion address (Tor)</h2>
<div class="outline-text-2" id="text-org2189c3f"> <div class="outline-text-2" id="text-org6449633">
<p> <p>
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: 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:
</p> </p>
@ -420,9 +424,9 @@ Subsequently even if dynamic DNS isn't working you may still be able to administ
</p> </p>
</div> </div>
</div> </div>
<div id="outline-container-org6c689d0" class="outline-2"> <div id="outline-container-org12697d1" class="outline-2">
<h2 id="org6c689d0">Adding or removing users</h2> <h2 id="org12697d1">Adding or removing users</h2>
<div class="outline-text-2" id="text-org6c689d0"> <div class="outline-text-2" id="text-org12697d1">
<p> <p>
Log into the system with: Log into the system with:
</p> </p>