Technology
Last time I moved my (WordPress) Web site, I started from scratch ; mostly because I did a lot of testings on the previous instance. Anyway… On the “News” page, I use the HungryFEED plugin to aggregate on a single page the few RSS feeds I daily read. Some are written in English and some are French. Since I moved the WP instance, the accented words were messy.Continue reading...
Learn more about SOGo here .
Quickly sumed up, SOGo is a kind of middleware that will provide Web, CalDAV and CardDAV access to you e-mail and web clients. You can check my NetBSD and OpenBSD articles to see how to build the backend Mail/Directory/SQL services. Once this is done, you can plug SOGo on to this architecture and provide E-Mail, Calendar, AddressBook to your users via mobile phones and mail clients.
I’ll describe here how to setup the sogod backend onto Debian GNU/Linux and the Web frontend onto NetBSD.Continue reading...
Switching from DHCP to static IP on a Debian system requires only a few steps:Continue reading...
Debian Lenny is one of my favorite Linux Distribution (when I have to run Linux… ;) Here’s how to install and run a Lenny domU under a NetBSD/xen dom0 installation.
My dom0 is running NetBSD 5.1_STABLE/amd64 and Xen version 3.3.2.
The domU will be running Debian GNU/Linux 5.0 (i386).Continue reading...
The Apache 2.2.17 package shipped in pkgsrc 2010Q4 comes with a nice <a href="http://httpd.apache.org/docs/2.2/mod/mpm_common.html#chrootdir">ChrootDir</a> directive that allows simple chroot configuration.
First, you will need Apache in at least version 2.2.10. Then:
# vi /usr/pkg/etc/httpd/httpd.conf (...) #DocumentRoot "/usr/pkg/share/httpd/htdocs" ChrootDir "/usr/pkg/share/httpd" DocumentRoot "/htdocs" (...) # ln -s /usr/pkg/share/httpd/htdocs /htdocsContinue reading...