diff --git a/.gitignore b/.gitignore index 57510a2..8f46c01 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,8 @@ +# Jekyll _site/ +.sass-cache/ +.jekyll-metadata + +# Bundler +.bundle +vendor/bundle diff --git a/404.html b/404.html new file mode 100644 index 0000000..c472b4e --- /dev/null +++ b/404.html @@ -0,0 +1,24 @@ +--- +layout: default +--- + + + +
+

404

+ +

Page not found :(

+

The requested page could not be found.

+
diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..07d2bf2 --- /dev/null +++ b/Gemfile @@ -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? diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..9063695 --- /dev/null +++ b/Gemfile.lock @@ -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 diff --git a/_config.yml b/_config.yml index ac7b454..389202e 100644 --- a/_config.yml +++ b/_config.yml @@ -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/ diff --git a/_includes/comments.html b/_includes/comments.html new file mode 100644 index 0000000..e69de29 diff --git a/_includes/copyright.html b/_includes/copyright.html new file mode 100644 index 0000000..a5c5c6d --- /dev/null +++ b/_includes/copyright.html @@ -0,0 +1,3 @@ +

+ © {{ site.time | date: '%Y' }} The Luon Network. +

diff --git a/_layouts/default.html b/_layouts/default.html deleted file mode 100644 index 1cdeee1..0000000 --- a/_layouts/default.html +++ /dev/null @@ -1,36 +0,0 @@ - - - - - The Luon Network - {{ page.title }} - - - - - - - -
- - - - -
- {{ content }} -
- - -
- - diff --git a/_posts/2010-09-25-new-website.md b/_posts/2010-09-25-new-website.md new file mode 100644 index 0000000..206948b --- /dev/null +++ b/_posts/2010-09-25-new-website.md @@ -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... diff --git a/_posts/2011-02-01-luonica-down.md b/_posts/2011-02-01-luonica-down.md new file mode 100644 index 0000000..79b5fc7 --- /dev/null +++ b/_posts/2011-02-01-luonica-down.md @@ -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. diff --git a/_posts/2011-03-15-down-due-to-electrical-fire.md b/_posts/2011-03-15-down-due-to-electrical-fire.md new file mode 100644 index 0000000..06f88ae --- /dev/null +++ b/_posts/2011-03-15-down-due-to-electrical-fire.md @@ -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. diff --git a/_posts/2011-06-30-added-contacts-carddav-service.md b/_posts/2011-06-30-added-contacts-carddav-service.md new file mode 100644 index 0000000..6c1170d --- /dev/null +++ b/_posts/2011-06-30-added-contacts-carddav-service.md @@ -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`. diff --git a/_posts/2011-09-07-added-webmail-refreshed-wiki-service.md b/_posts/2011-09-07-added-webmail-refreshed-wiki-service.md new file mode 100644 index 0000000..684b214 --- /dev/null +++ b/_posts/2011-09-07-added-webmail-refreshed-wiki-service.md @@ -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`). diff --git a/_posts/2011-09-31-added-web-statistics.md b/_posts/2011-09-31-added-web-statistics.md new file mode 100644 index 0000000..5c1d8c6 --- /dev/null +++ b/_posts/2011-09-31-added-web-statistics.md @@ -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:///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. diff --git a/_posts/2012-08-21-moved.md b/_posts/2012-08-21-moved.md new file mode 100644 index 0000000..b1044c4 --- /dev/null +++ b/_posts/2012-08-21-moved.md @@ -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. diff --git a/_posts/2015-04-03-jekyll.md b/_posts/2015-04-03-jekyll.md new file mode 100644 index 0000000..f8d3e4d --- /dev/null +++ b/_posts/2015-04-03-jekyll.md @@ -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. \ No newline at end of file diff --git a/_posts/2016-06-05-offering-owncloud.md b/_posts/2016-06-05-offering-owncloud.md new file mode 100644 index 0000000..5bf1201 --- /dev/null +++ b/_posts/2016-06-05-offering-owncloud.md @@ -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. diff --git a/_posts/2017-12-15-our-new-cloud-service-nextcloud.md b/_posts/2017-12-15-our-new-cloud-service-nextcloud.md new file mode 100644 index 0000000..eadd40a --- /dev/null +++ b/_posts/2017-12-15-our-new-cloud-service-nextcloud.md @@ -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). diff --git a/_posts/2019-08-24-reworked-site.md b/_posts/2019-08-24-reworked-site.md new file mode 100644 index 0000000..3580392 --- /dev/null +++ b/_posts/2019-08-24-reworked-site.md @@ -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. \ No newline at end of file diff --git a/_posts/2019-08-25-new-mail-server-service.md b/_posts/2019-08-25-new-mail-server-service.md new file mode 100644 index 0000000..f758c39 --- /dev/null +++ b/_posts/2019-08-25-new-mail-server-service.md @@ -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. diff --git a/about.textile b/about.md similarity index 64% rename from about.textile rename to about.md index 3d61e88..51792a5 100644 --- a/about.textile +++ b/about.md @@ -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. diff --git a/contact.md b/contact.md new file mode 100644 index 0000000..b9c3107 --- /dev/null +++ b/contact.md @@ -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 diff --git a/contact.textile b/contact.textile deleted file mode 100644 index 85224fb..0000000 --- a/contact.textile +++ /dev/null @@ -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 @luon.net. - -* @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 diff --git a/default.css b/default.css deleted file mode 100644 index 3c475d2..0000000 --- a/default.css +++ /dev/null @@ -1,169 +0,0 @@ -/* CSS for the Hypermedia site */ -/* Paul van Tilburg */ - -/* 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; -} diff --git a/index.html b/index.html new file mode 100644 index 0000000..dd947e1 --- /dev/null +++ b/index.html @@ -0,0 +1,18 @@ +--- +title: Welcome! +layout: index +list_title: News +--- +

Welcome!

+ +

+The Luon Network; provides many services for its users. You can read more +about us and about +these services on this website. +

+ +

+Below follows some news about the Luon Network; you can read it here +or subscribe to our feed. +

+
diff --git a/index.textile b/index.textile deleted file mode 100644 index 9f768e8..0000000 --- a/index.textile +++ /dev/null @@ -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:///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... - diff --git a/links.md b/links.md new file mode 100644 index 0000000..38dff3d --- /dev/null +++ b/links.md @@ -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/) diff --git a/links.textile b/links.textile deleted file mode 100644 index 84d6cc4..0000000 --- a/links.textile +++ /dev/null @@ -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/ diff --git a/services.md b/services.md new file mode 100644 index 0000000..d54c3b9 --- /dev/null +++ b/services.md @@ -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 diff --git a/services.textile b/services.textile deleted file mode 100644 index 0d4d091..0000000 --- a/services.textile +++ /dev/null @@ -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;