Completely rework the site

* Use a newer Jekyll version and also use bundler
* Use the `jekyl-theme-hydeout` theme gem
* Add support for Jekyll Admin (if you want to use that)
* Transform the index news items to posts
* Use Markdown instead of Textile for the pages
This commit is contained in:
Paul van Tilburg 2019-08-25 21:25:13 +02:00
parent 6e86be4a82
commit 388530ae19
30 changed files with 500 additions and 431 deletions

7
.gitignore vendored
View File

@ -1 +1,8 @@
# Jekyll
_site/
.sass-cache/
.jekyll-metadata
# Bundler
.bundle
vendor/bundle

24
404.html Normal file
View File

@ -0,0 +1,24 @@
---
layout: default
---
<style type="text/css" media="screen">
.container {
margin: 10px auto;
max-width: 600px;
text-align: center;
}
h1 {
margin: 30px 0;
font-size: 4em;
line-height: 1;
letter-spacing: -1px;
}
</style>
<div class="container">
<h1>404</h1>
<p><strong>Page not found :(</strong></p>
<p>The requested page could not be found.</p>
</div>

33
Gemfile Normal file
View File

@ -0,0 +1,33 @@
source "https://rubygems.org"
# Hello! This is where you manage which Jekyll version is used to run.
# When you want to use a different version, change it below, save the
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
#
# bundle exec jekyll serve
#
# This will help ensure the proper Jekyll version is running.
# Happy Jekylling!
gem "jekyll", "~> 3.8.3"
# This is the default theme for new Jekyll sites. You may change this to anything you like.
gem "minima", "~> 2.0"
# Use this theme instead.
gem "jekyll-theme-hydeout", "~> 3.4"
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
# uncomment the line below. To upgrade, run `bundle update github-pages`.
# gem "github-pages", group: :jekyll_plugins
# If you have any plugins, put them here!
group :jekyll_plugins do
gem "jekyll-admin"
gem "jekyll-feed", "~> 0.6"
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
# Performance-booster for watching directories on Windows
gem "wdm", "~> 0.1.0" if Gem.win_platform?

116
Gemfile.lock Normal file
View File

@ -0,0 +1,116 @@
GEM
remote: https://rubygems.org/
specs:
addressable (2.6.0)
public_suffix (>= 2.0.2, < 4.0)
backports (3.15.0)
colorator (1.1.0)
concurrent-ruby (1.1.5)
em-websocket (0.5.1)
eventmachine (>= 0.12.9)
http_parser.rb (~> 0.6.0)
eventmachine (1.2.7)
faraday (0.15.4)
multipart-post (>= 1.2, < 3)
ffi (1.11.1)
forwardable-extended (2.6.0)
http_parser.rb (0.6.0)
i18n (0.9.5)
concurrent-ruby (~> 1.0)
jekyll (3.8.6)
addressable (~> 2.4)
colorator (~> 1.0)
em-websocket (~> 0.5)
i18n (~> 0.7)
jekyll-sass-converter (~> 1.0)
jekyll-watch (~> 2.0)
kramdown (~> 1.14)
liquid (~> 4.0)
mercenary (~> 0.3.3)
pathutil (~> 0.9)
rouge (>= 1.7, < 4)
safe_yaml (~> 1.0)
jekyll-admin (0.8.1)
addressable (~> 2.4)
jekyll (~> 3.3)
sinatra (~> 1.4)
sinatra-contrib (~> 1.4)
jekyll-feed (0.12.1)
jekyll (>= 3.7, < 5.0)
jekyll-gist (1.5.0)
octokit (~> 4.2)
jekyll-paginate (1.1.0)
jekyll-sass-converter (1.5.2)
sass (~> 3.4)
jekyll-seo-tag (2.6.1)
jekyll (>= 3.3, < 5.0)
jekyll-theme-hydeout (3.7.1)
jekyll (~> 3.4)
jekyll-feed (~> 0.6)
jekyll-gist (~> 1.4)
jekyll-paginate (~> 1.1)
jekyll-watch (2.2.1)
listen (~> 3.0)
kramdown (1.17.0)
liquid (4.0.3)
listen (3.1.5)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
ruby_dep (~> 1.2)
mercenary (0.3.6)
minima (2.5.1)
jekyll (>= 3.5, < 5.0)
jekyll-feed (~> 0.9)
jekyll-seo-tag (~> 2.1)
multi_json (1.13.1)
multipart-post (2.1.1)
octokit (4.14.0)
sawyer (~> 0.8.0, >= 0.5.3)
pathutil (0.16.2)
forwardable-extended (~> 2.6)
public_suffix (3.1.1)
rack (1.6.11)
rack-protection (1.5.5)
rack
rack-test (1.1.0)
rack (>= 1.0, < 3)
rb-fsevent (0.10.3)
rb-inotify (0.10.0)
ffi (~> 1.0)
rouge (3.9.0)
ruby_dep (1.5.0)
safe_yaml (1.0.5)
sass (3.7.4)
sass-listen (~> 4.0.0)
sass-listen (4.0.0)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
sawyer (0.8.2)
addressable (>= 2.3.5)
faraday (> 0.8, < 2.0)
sinatra (1.4.8)
rack (~> 1.5)
rack-protection (~> 1.4)
tilt (>= 1.3, < 3)
sinatra-contrib (1.4.7)
backports (>= 2.0)
multi_json
rack-protection
rack-test
sinatra (~> 1.4.0)
tilt (>= 1.3, < 3)
tilt (2.0.9)
PLATFORMS
ruby
DEPENDENCIES
jekyll (~> 3.8.3)
jekyll-admin
jekyll-feed (~> 0.6)
jekyll-theme-hydeout (~> 3.4)
minima (~> 2.0)
tzinfo-data
BUNDLED WITH
1.17.3

View File

@ -1,3 +1,31 @@
# Don't interprete hard breaks in Textile
redcloth:
hard_breaks: false
# Site settings
title: The Luon Network;
email: webmaster@luon.net
description: >-
Provides internet services such as email, cloud storage,
instant messaging, etc. using a private, trusted setup
for family and friends.
baseurl: ""
url: "http://luon.net"
# Build settings
markdown: kramdown
theme: jekyll-theme-hydeout
plugins:
- jekyll-feed
# Theme/content settings
paginate: 5
show_excerpts: true
# Exclude from processing.
# The following items will not be processed, by default. Create a custom list
# to override the default setting.
# exclude:
# - Gemfile
# - Gemfile.lock
# - node_modules
# - vendor/bundle/
# - vendor/cache/
# - vendor/gems/
# - vendor/ruby/

0
_includes/comments.html Normal file
View File

3
_includes/copyright.html Normal file
View File

@ -0,0 +1,3 @@
<p>
&copy; {{ site.time | date: '%Y' }} The Luon Network.
</p>

View File

@ -1,36 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="{lang:}">
<head>
<title>The Luon Network - {{ page.title }}</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="keywords" content="luon, network, linux, debian, system administration"/>
<meta name="description" content="The main site of the Luon Network;"/>
<meta name="robots" content="all"/>
<link href="default.css" rel="stylesheet"/>
</head>
<body>
<div id="content">
<div id="header">
<h1>The Luon Network; &#8210; {{ page.title }}</h1>
</div>
<div id="menu">
{% assign sorted_pages = site.pages | sort:"weight" %}
<ul>
{% for p in sorted_pages %}
<li><a {% if p.url == page.url %}class="active"{% endif %} href="{{ p.url }}">{{ p.title }}</a></li>
{% endfor %}
</ul>
</div>
<div id="body">
{{ content }}
</div>
<div id="footer" class="bar">
This site was (re)generated with <a href="http://jekyllrb.com">Jekyll</a> on <strong>{{ site.time | date: '%Y-%m-%d' }}</strong>
</div>
</div>
</body>
</html>

View File

@ -0,0 +1,14 @@
---
title: New website!
date: '2010-09-25 12:00:00'
layout: post
---
The previous website was not working anymore due to changes in PHP. As a
result, this page has been defunct for many months, dare I say years. But,
because most of the Luon people don't really check this website anyway, it
wasn't a big deal.
I am not gonna pretend that this new site is going to be better and will
attract your recurrent visits now. So, I've posted some (rather timeless)
info about the Luon Network; on here and we'll see how it goes from
there...

View File

@ -0,0 +1,8 @@
---
title: Luonica; down
date: '2011-02-01 12:00:00'
layout: post
---
Our [StatusNet](http://status.net) service Luonica; has been taken down due
to ongoing problems with the (rather unsupported) PostgreSQL-backend of
StatusNet.

View File

@ -0,0 +1,9 @@
---
title: Down due to electrical fire
date: '2011-03-15 12:00:00'
layout: post
---
Due to an electrical fire in the airconditioning unit, we have been
down for the past 36 hours because we first had to find out what
the cause was and the fire department/building manager asked us not
to start any of the equipment until this morning.

View File

@ -0,0 +1,7 @@
---
title: Added contacts/CardDAV service
date: '2011-06-30 12:00:00'
layout: post
---
To supplement out CalDAV [service](/services.html), I have enabled
CardDAV support and made it available via `contacts.luon.net`.

View File

@ -0,0 +1,16 @@
---
title: Added webmail, refreshed wiki service
date: '2011-09-07 12:00:00'
layout: post
---
Only a few days before `sphere.luon.net` will be shutdown, I have added a
[webmail service](https://webmail.luon.net/) that will access Luon mail or
mail on virtual domains hosted by Luon, hosted on `target.luon.net`.
I have also refreshed the [Luon Wiki](http://wiki.luon.net), switching from
gitit to [ikiwiki](http://ikiwiki.info). We also support hosting other
ikiwikis, if needed.
Make sure our SSL certificates are valid! If not, please let us know.
Due to the move it could be, though, that there is a hostname mismatch (for
example `*.vtilburg.net` with `webmail.luon.net`).

View File

@ -0,0 +1,16 @@
---
title: Added web statistics
date: '2011-09-13 12:00:00'
layout: post
---
Every website hosted by us has received automated web statistics analysis
and an accompanying webpage that displays this information, available via
`http://<domain>/webstats`.
See for example the [statistics of this site](http://luon.net/webstats).
With this transition, I moved from the old
[webalizer](http://webalizer.org/) to
[AWstats](http://awstats.sourceforget.net). Old statistics (up until 11
September 2011) are still be available via
[http://webalizer.luon.net](http://webalizer.luon.net), optionally followed
by the domain name.

View File

@ -0,0 +1,13 @@
---
title: Moved!
date: '2012-08-21 12:00:00'
layout: post
---
Because all of the sysops have moved on from the [TU Eindhoven](http://www.tue.nl),
it has been long past due to move our servers as well.
The move has been quite a task, but as of yesterday our servers are located
at a data center in Rijen, Noord-Brabant, NL via our new hoster,
[Bitency](https://bitency.nl/en.html).
Following this move will be a cleanup and then a restructuring of the
servers/services, as we are not limited by 3 physical machines anymore.

View File

@ -0,0 +1,8 @@
---
title: Jekyll
date: '2015-04-03 12:00:00'
layout: post
---
This website was migrated to [Jekyll](http://jekyllrb.com), but should
otherwise look and feel the same as before.

View File

@ -0,0 +1,13 @@
---
title: Offering ownCloud
layout: post
date: '2016-06-05 20:53:49'
---
We have installed [ownCloud](http://owncloud.com) on one of our servers to
offer a way for Luon users to store files "in the cloud" and share them while
preserving their privacy. This is still an experiment though!
If the service seems to be production-ready in the future it might also
substitute our CalDAV/CardDAV services, as these are also available within
ownCloud.

View File

@ -0,0 +1,28 @@
---
title: 'Our new cloud service: Nextcloud'
layout: post
date: '2017-12-15 21:03:19'
---
We have decided to replace [ownCloud](http://owncloud.com) with
[Nextcloud](http://nextcloud.com). The migration from ownCloud 10 to Nextcloud
has gone very smoothly and after a few weeks of testing, this is going to be
our new, real cloud services. Nextcloud offers us much more stability in the
future and already mature services and applications. Every Luon user can access
it using the login credential to used access his/her/their email.
As a result of the switch, the DAViCal CalDAV/CardDAV services will be shutdown
in the following two weeks as these services are present within Nextcloud, work
just as well and also offer a web view.
Nextcloud has the following cloud services:
* File storage
* Image gallery view on files, convenient for sharing
* Contacts
* Calendars
* Notes
All of these services offer sharing items (calendars, contacts, appointments,
files, folders, etc.) within Nextcloud, but also with external users via public
or private links (with a shared key).

View File

@ -0,0 +1,7 @@
---
title: Reworked the site
date: '2019-08-24 00:00:00'
layout: post
---
We have reworked and updated the site. It should be more useful now and easier to keep up to date as well.

View File

@ -0,0 +1,12 @@
---
title: New mail server/service
layout: post
date: '2019-08-25 21:03:19'
---
The entire front part of our mail setup has been redone! All mail will be
routed through a new server that will reject messages that are very definitely
spam (using [Rspamd](http://rspamd.com)). Then, it is forwared to another server
that will sort it out into mailboxes using the default spam filter or the filter
defined by our users. Also, all mailing lists that we used to have are cleaned
up and the few that remained are also moved to this server.

View File

@ -1,15 +1,16 @@
---
title: About Us
layout: default
sidebar_link: true
weight: 10
---
h2. About the Luon Network;
## About the Luon Network;
In 1998 the Luon Network was started with the LoTN project (Linux on TU/e
Notebooks), by five of us. The main motivation was that the "Eindhoven
University of Technology":http://www.tue.nl/ provided notebooks to their
Notebooks), by five of us. The main motivation was that the [Eindhoven
University of Technology](http://www.tue.nl/) provided notebooks to their
first year students, and we wanted to assist students who were interested
to run "Linux":http://linux.org/ on it instead of/next to Windows. One of
to run [Linux](http://linux.org/) on it instead of/next to Windows. One of
the goals was gain as much knowledge about the workings of the operating
system and make it available to whomever wanted to join us.
@ -18,23 +19,23 @@ especially the graphical environment. So, the project started with a bunch
of web pages explaining how to get things working with accompanying example
configuration files. Because the Internet was not as widely
available--dial-in was still the main method to get on-line--it was
convenient to have an server that was always available at the university.
convenient to have an server that was always available at the university.
A server was arranged and put in the archive room of the "studentenburo" of
the "Faculty of Electrical Engineering":http://www.ele.tue.nl/. Because it
the [Faculty of Electrical Engineering](http://www.ele.tue.nl/). Because it
was also uncommon to have a server at home, shell accounts were provided to
the users to learn their way around the system.
In the beginning of 1999, the server we started with was replaced by a
bigger one, which is the one this website still runs on, and we switched
from "Slackware":http://slackware.com/ to "Debian":http://debian.org/. The
from [Slackware](http://slackware.com/) to [Debian](http://debian.org/). The
network gained about 30 users, some websites and projects found their home
on the server and we obtained an extra server for the core services. By
then the domain @luon.net@ was registered and the Luon Network was born.
Due to issues with the place our servers were located, everything had to be
temporarily moved to the student society "Odin":http://odin.tte.ele.tue.nl/
temporarily moved to the student society [Odin](http://odin.tte.ele.tue.nl/)
until we found a better place. When in August 2000
"Spacelabs":http://spacelabs.nl/ was founded, the Luon Network found its
[Spacelabs](http://spacelabs.nl/) was founded, the Luon Network found its
current home and was able to spread its wings. We gained and lost dozens
of users and also servers who were privately managed by users on which they
learnt the ropes of managing a server. Besides that, lots of projects
@ -43,4 +44,11 @@ of our servers.
While the need for the LoTN project has been completely removed by the
growing up of GNU/Linux and its distributions, Luon still continues to
provide lots of "services":services.html to their users.
provide lots of [services](services.html) to their users.
With the closing of [Spacelabs](https://spacelabs.nl) in 2011, our servers
had to be removed from the premises. All servers were virtualized and hosted
on a rented, dedicated server, paid for by our members. Many services got
restructed and moved around. Some got dropped, and some got added, but
the scope of the network remained the same: providing internet services in a
private, trusted setting.

22
contact.md Normal file
View File

@ -0,0 +1,22 @@
---
title: Contact Info
layout: default
sidebar_link: true
---
## Luon Network Contact Info;
Per [service](services.html) there can be a different person who manages it.
The following addresses can be used to contact the maintainer of a service,
provided it's glued in front of `@luon.net`.
* `abuse`: in case of abuse by our services/servers/users
* `dnsadmin`: DNS/domain hosting
* `gitadmin`: Git repositories and accounts
* `hostmaster`: main contact point for Luon domain issues/abuse
* `ildusadmin`: dynamic DNS (ILDUS) service
* `listmaster`: mailman mailing lists
* `postmaster`: IMAP/POP3/SMTP/Submission services
* `sysops`: **main/default contact address!**
* `usermanager`: user account creation/deletion/problems
* `webmaster`: web services
* `xmppadmin`: XMPP (Jabber) accounts and server

View File

@ -1,27 +0,0 @@
---
title: Contact Info
layout: default
weight: 40
---
h2. Luon Network Contact Info;
Per "service":services.html there can be a different user who manages it.
The following addresses can be used to contact the maintainer of a service,
provided it's glued in front of <code>@luon.net</code>.
* @abuse@: in case of abuse by our services/servers/users
* @ca@: SSL/TLS certificate signing by our CA
* @caladmin@: CalDAV/CardDAV server and accounts
* @ftpadmin@: data available via FTP (includes Debian tree)
* @dnsadmin@: DNS/domain hosting
* @gitadmin@: Git repositories and accounts
* @hostmaster@: main contact point for Luon domain issues/abuse
* @ildusadmin@: dynamic DNS (ILDUS) service
* @listmaster@: mailman mailing lists
* @luonica@: Luonica/StatusNet service
* @postmaster@: IMAP/POP3/SMTP/Submission services
* @jabberadmin@: Jabber/XMPP accounts and server
* @svnadmin@: Subversion repositories and accounts
* @sysops@: _main/default contact address!_
* @usermanager@: user account creation/deletion/problems
* @webmaster@: web services

View File

@ -1,169 +0,0 @@
/* CSS for the Hypermedia site */
/* Paul van Tilburg <paul@luon.net> */
/* add style to the main elements */
body { font-family: 'lucida grande', 'bitstream vera', sans-serif; }
a { text-decoration: none; }
a:link {
color: #4d593c;
background-color: inherit;
border-bottom: dashed thin #4d593c;
}
a:visited {
color: #90a66f;
background-color: inherit;
border-bottom: dashed thin #90a66f;
}
a:hover,
a:active { border-bottom: solid thin; }
h1, h2, h3, h4 { text-align: left;}
h1 { border-bottom: thin solid #594d3c; }
h2 { border-bottom: thin dashed #594d3c; }
h3 { border-bottom: thin dashed #594d3c; }
pre {
font-size: 90%;
overflow: hidden;
padding-left: 1em;
border: thin solid #8080bf;
color: inherit;
background-color: #3c3c59;
}
table {
font-size: 83%;
border: thin solid #222233;
width: 100%;
}
table th {
padding: 0em 0.5em;
}
table tr.head {
color: #ffffff;
background-color: #3c3c59;
}
table tr.col0 { color: inherit; background-color: #ffffff; }
table tr.col1 { color: inherit; background-color: #d6d6ff; }
table td {
padding: 0em 0.5em;
vertical-align: top;
line-height: 1.6em;
}
/* add style to the fixed elements */
#content {
width: 52em;
margin: 0em auto;
}
#header {
padding: 0.2em;
color: inherit;
background-color: #3c3c59;
border-top: thin solid #222233;
border-left: thin solid #222233;
border-right: thin solid #222233;
}
#header h1 {
margin: 0.5em;
border: none;
color: #ffffff;
background-color: inherit;
}
#footer {
font-size: 69%;
}
#body {
width: 36em;
margin-top: 1em;
padding-left: 1em;
text-align: justify;
line-height: 1.8em;
}
#fn0, #fn1, #fn2, #fn3 {
border-top: thin dotted #594d3c;
}
/* bar, navigation, bibliography and generic alignment classes */
.bar {
clear: both;
padding: 0.2em;
text-align: center;
font-size: 83%;
color: inherit;
background-color: #8080bf;
border: thin solid #3c3c59;
}
.bar a { border-bottom: none; }
.bar a:link { color: #ffffff; background-color: inherit; }
.bar a:visited { color: #ffffff; background-color: inherit; }
.small {
font-size: smaller;
}
.left, .right {
padding: 0em 1em;
}
.left {
float: left;
text-align: left;
}
.right {
float: right;
text-align: right;
}
.center {
text-align: center;
}
/* styling the menu */
#menu {
float: right;
right: 0em;
width: 16em;
margin: 1em 0em 1em 1em;
font-size: 83%;
color: inherit;
background-color: #e5c79a;
border: thin solid #332c22;
line-height: 1.2em;
}
#menu a:hover {
text-decoration: underline;
}
#menu ul {
list-style-type: none;
margin-left: 0em;
padding-left: 1em; /* first ul has some padding left & right */
padding-right: 1em;
}
#menu li {
padding: 0.5em 0em; /* inter-item padding */
}
#menu li a {
color: #594d3c;
background-color: inherit;
text-decoration: none;
border-bottom: none;
}
#menu li a.active {
font-weight: bold;
}

18
index.html Normal file
View File

@ -0,0 +1,18 @@
---
title: Welcome!
layout: index
list_title: News
---
<h1>Welcome!</h1>
<p>
The Luon Network; provides many services for its users. You can read more
<a href="about.html">about us</a> and about
<a href="services.html">these services</a> on this website.
</p>
<p>
Below follows some news about the Luon Network; you can read it here
or subscribe to <a href="feed.xml">our feed</a>.
</p>
<hr>

View File

@ -1,89 +0,0 @@
---
title: Home
layout: default
weight: 0
---
h2. Welcome to the Luon Network;
Although the Luon Network; provides many many "services":services.html for
Luon users, the web page has not been used much over the past years and
therefore contains only an overview and some basic information.
Cheers!
h2. News
h3. 2015-04-03 -- Jekyll
This website was migrated to "Jekyll":http://jekyllrb.com, but should
otherwise look and feel the same as before.
h3. 2012-08-21 -- Moved!
Because all of the sysops have moved on from the "TU Eindhoven":http://www.tue.nl,
it has been long past due to move our servers as well.
The move has been quite a task, but as of yesterday our servers are located
at a data center in Rijen, Noord-Brabant, NL via our new hoster,
"Bitency":https://bitency.nl/en.html.
Following this move will be a cleanup and then a restructuring of the
servers/services, as we are not limited by 3 physical machines anymore.
h3. 2011-09-13 -- Added web statistics
Every website hosted by us has received automated web statistics analysis
and an accompanying webpage that displays this information, available via
@http://<domain>/webstats@.
See for example the "statistics of this site":http://luon.net/webstats.
With this transition, I moved from the old
"webalizer":http://webalizer.org/ to
"AWstats":http://awstats.sourceforget.net. Old statistics (up until 11
September 2011) are still be available via
"http://webalizer.luon.net":http://webalizer.luon.net, optionally followed
by the domain name.
h3. 2011-09-07 -- Added webmail, refreshed wiki service
Only a few days before @sphere.luon.net@ will be shutdown, I have added a
"webmail service":https://webmail.luon.net/ that will access Luon mail or
mail on virtual domains hosted by Luon, hosted on @target.luon.net@.
I have also refreshed the "Luon Wiki":http://wiki.luon.net, switching from
gitit to "ikiwiki":http://ikiwiki.info. We also support hosting other
ikiwikis, if needed.
Make sure our SSL certificates are valid! If not, please let us know.
Due to the move it could be, though, that there is a hostname mismatch (for
example @*.vtilburg.net@ with @webmail.luon.net@).
h3. 2011-06-30 -- Added contacts/CardDAV service
To supplement out CalDAV "service":/services.html, I have enabled
CardDAV support and made it available via @contacts.luon.net@.
h3. 2011-03-15 -- Down due to electrical fire
Due to an electrical fire in the airconditioning unit, we have been
down for the past 36 hours because we first had to find out what
the cause was and the fire department/building manager asked us not
to start any of the equipment until this morning.
h3. 2011-02-01 -- Luonica; down
Our "StatusNet":http://status.net/ service Luonica; has been taken down due
to ongoing problems with the (rather unsupported) PostgreSQL-backend of
StatusNet.
h3. 2010-09-26 -- New website!
The previous website was not working anymore due to changes in PHP. As a
result, this page has been defunct for many months, dare I say years. But,
because most of the Luon people don't really check this website anyway, it
wasn't a big deal.
I am not gonna pretend that this new site is going to be better and will
attract your recurrent visits now. So, I've posted some (rather timeless)
info about the Luon Network; on here and we'll see how it goes from
there...

31
links.md Normal file
View File

@ -0,0 +1,31 @@
---
title: Links
layout: default
sidebar_link: true
weight: 30
---
## Luon Network Links;
Below are some links to pages/sites of our running services that
expose information or a user interface to the web:
* [Banaan!](http://banaan.luon.net/), your friendly test page
* [Nextcloud](http://cloud.luon.net/), Nextcloud service
* [Planet](http://planet.luon.net/), feed aggregator of our blogs, etc.
* [Radio](http://radio.luon.net/), web interface of our radio station
* [Stream](http://stream.luon.net/), audio/video streaming service
* [Web statistics](http://luon.net/webstats), web usage statistics
* [Web mail](https://webmail.luon.net/), email access via web
* [Wiki](http://wiki.luon.net/), web wiki
* [Yubnub](http://yubnub.luon.net/), our own (social) command line for the web
Additionally, some links to projects hosted on our network:
* [Feeding Frenzy!](http://ffrenzy.luon.net/), game developed during a study project
* [Team Onbekend](http://luon.net/~onbekend/), Createch'99 team home page
* [Utopia MOO](http://utopiamoo.net), virtual text-based on-line multi-user world
and blogs/journals/homepages by some of our users:
* [Paul van Tilburg](http://paul.luon.net/)
* [Sjoerd Simons](http://sjoerd.luon.net/)

View File

@ -1,52 +0,0 @@
---
title: Some Links
layout: default
weight: 30
---
h2. Luon Network Links;
Below are some links to pages/sites of our running services that
expose information or a user interface to the web:
* "Banaan!":http://banaan.luon.net/, your friendly homepage
* "CA":http://ca.luon.net/, our own certificate authority
* "Calendar":http://calendar.luon.net/, CalDAV/iCal service
* "Contacts":http://contacts.luon.net/, CardDAV service
* "FTP":ftp://ftp.luon.net/, web view on our file server
* "Git":http://git.luon.net, web access to the Git repositories
* "Jabber":http://jabber.luon.net/, a Jabber/XMPP web interface
* -Luonica;-, the StatusNet setup (unavailable at the moment)
* "Mailman":http://lists.luon.net/, the mailing list manager
* "Mailgraph":http://cube.luon.net/cgi-bin/mailgraph.cgi, mail statistics
* "Planet":http://planet.luon.net/, feed aggregator of our blogs, etc.
* "Radio":http://radio.luon.net/, web interface of our radio station
* "Subversion":http://svn.luon.net, web access to the Subversion repositories
* "Stream":http://stream.luon.net/, audio/video streaming service
* "Trac":http://trac.luon.net, wiki/bug tracker/source view for Subversion repositories
* "Web statistics":http://luon.net/webstats, web usage statistics
* "Webmail":https://webmail.luon.net/, email access via web
* "Wiki":http://wiki.luon.net/, web wiki
* "Yubnub":http://yubnub.luon.net, our own (social) command line for the web
Additionally, some links to projects hosted on our network:
* "Feeding Frenzy!":http://ffrenzy.luon.net/, game developed during a study project
* "Gcam":http://gcam.luon.net/, gtk webcam viewer (old/unmaintained)
* "GKrellM Plugins":http://gkrellm.luon.net, plugins for GKrellM (old/unmaintained)
* "Movienight":http://movienight.luon.net/, movie night vote & plan application
* "Team Onbekend":http://luon.net/~onbekend/, Createch'99 team home page
* "Utopia MOO":http://utopiamoo.net, virtual text-based on-line multi-user world
and blogs/journals/homepages by our users:
* "Admar Schoonen":http://luon.net/~admar/
* "Adriaan Penning":http://luon.net/~adriaan/
* "Bram Senders":http://kwijlspoor.nl/
* "Christian Luijten":http://christian.luijten.org/
* "Familie van Tilburg":http://vtilburg.net/
* "Marcel Moreaux":http://qvdr.net/
* "Mark van Eijk":http://luon.net/~mark/
* "Niels Schipper":http://luon.net/~niels/
* "Paul van Tilburg":http://paul.luon.net/
* "Sjoerd Simons":http://sjoerd.luon.net/
* "Tom van Tilburg":http://tom.vtilburg.net/

46
services.md Normal file
View File

@ -0,0 +1,46 @@
---
title: Services
layout: default
sidebar_link: true
weight: 20
---
## Luon Network Services;
We provide ([Debian](http://debian.org)) GNU/Linux-based internet services to
ex-students at the [Eindhoven University of Technology](http://tue.nl) and their
friends & family (whoever is interested).
A rough overview of what is available for a Luon user:
* Dynamic DNS (ILDUS) account
* E-mail account
* access via IMAP and webmail
* server-side (spam) filtering
* mail submission
* Nextcloud account
* personal/shared calendars
* personal/shared contacts
* personal/shared files
* polls
* Kanban boards
* *much more…*
* Mailing list(s)
* PosgreSQL database account
* Shell account (via SSH)
* VCS (Git) account/repositories
* Web space (and/or wiki)
* XMPP (Jabber) account
See the [Links](links.html) page for links to the website of some of these
services or the [Contact Info](contact.html) page if you want to get it touch
about these services.
We also do:
* DNS/domain hosting
* E-mail hosting
* Feed aggregation
* Hosting of Git repositories
* Streaming audio
* Web hosting
* Web usage statistics

View File

@ -1,45 +0,0 @@
---
title: Our Services
layout: default
weight: 20
---
h2. Luon Network Services;
We provide ("Debian":http://debian.org/) GNU/Linux-based services to
students at the "Eindhoven University of Technology":http://tue.nl or their
friends & family (whoever is interested).
A rough overview of what is available for a Luon user:
* Dynamic DNS (ILDUS) account
* E-mail account
** access via IMAP and webmail
** server-side (spam) filtering
** mail submission
* iCal/CalDAV/CardDAV account
* IPv6 tunnels
* Jabber/XMPP account
* Mailing list(s)
* MySQL/PosgreSQL/LDAP database account
* Shell account (via SSH)
* -StatusNet account- (unavailable at the moment)
* VCS (Git/Subversion) account/repositories
* Web space (and/or wiki)
See the "Links":links.html page for links to the website of some of these
services or the "Contact":contact.html page if you want to get it touch
about these services.
We also do:
* Audio/video streaming
* DNS/domain hosting
* E-mail hosting
* Feed aggregation
* Hosting of Git/Subversion repositories
* Hosting of supplementing Debian packages
* Streaming audio
* TLS/SSL certificates under our "own CA":http://ca.luon.net/
* Web hosting
* Web usage statistics
* Yubnub;