<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://nerdydrunk.com/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://nerdydrunk.com/feed.php">
        <title>Nerdy Drunk - dokuwiki</title>
        <description>Drunk on technology</description>
        <link>https://nerdydrunk.com/</link>
        <image rdf:resource="https://nerdydrunk.com/_media/wiki:favicon.ico" />
       <dc:date>2026-04-29T15:43:34+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://nerdydrunk.com/dokuwiki:amazon_linux_2?rev=1658400099&amp;do=diff"/>
                <rdf:li rdf:resource="https://nerdydrunk.com/dokuwiki:aws?rev=1658400099&amp;do=diff"/>
                <rdf:li rdf:resource="https://nerdydrunk.com/dokuwiki:centos_6?rev=1658400099&amp;do=diff"/>
                <rdf:li rdf:resource="https://nerdydrunk.com/dokuwiki:docker?rev=1658418339&amp;do=diff"/>
                <rdf:li rdf:resource="https://nerdydrunk.com/dokuwiki:restore_backup?rev=1658400099&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://nerdydrunk.com/_media/wiki:favicon.ico">
        <title>Nerdy Drunk</title>
        <link>https://nerdydrunk.com/</link>
        <url>https://nerdydrunk.com/_media/wiki:favicon.ico</url>
    </image>
    <item rdf:about="https://nerdydrunk.com/dokuwiki:amazon_linux_2?rev=1658400099&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-07-21T10:41:39+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>amazon_linux_2</title>
        <link>https://nerdydrunk.com/dokuwiki:amazon_linux_2?rev=1658400099&amp;do=diff</link>
        <description>DokuWiki Amazon Linux 2

This is how I installed DokuWiki on Amazon Linux 2 and configured automatic updating of the SSL certificate.  This installation was done on-prem for a private wiki that is not publicly accessible.  Because of this Lets Encrypt certificate validation does not happen on the instance itself.</description>
    </item>
    <item rdf:about="https://nerdydrunk.com/dokuwiki:aws?rev=1658400099&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-07-21T10:41:39+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>aws</title>
        <link>https://nerdydrunk.com/dokuwiki:aws?rev=1658400099&amp;do=diff</link>
        <description>DokuWiki Amazon Web Services (AWS)

linux centos aws dokuwiki

AWS

The installation of DokuWiki is almost the same on the Amazon Linux AMI as it is on CentOS 6.  There are a few AWS specific things that I did before installing DocuWiki.  Elastic File System (EFS) is used to store the DokuWiki files so DokuWiki can quickly be scaled across multiple servers.  Simple Email Service (SES) is used for emailing from the server things like; logwatch, fail2ban, site registration, backup script status.</description>
    </item>
    <item rdf:about="https://nerdydrunk.com/dokuwiki:centos_6?rev=1658400099&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-07-21T10:41:39+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>centos_6</title>
        <link>https://nerdydrunk.com/dokuwiki:centos_6?rev=1658400099&amp;do=diff</link>
        <description>DokuWiki CentOS 6

This page is probably out of date, please see DokuWiki Amazon Linux 2 for more recent directions.

linux centos aws dokuwiki

CentOS

Enable EPEL repo and install apache

Download tarball from dokuwiki. &lt;https://download.dokuwiki.org/&gt;

Have root install php and create /etc/httpd/conf.d/wiki.nerdydrunk.com.conf and /var/www/wiki.nerdydrunk.com</description>
    </item>
    <item rdf:about="https://nerdydrunk.com/dokuwiki:docker?rev=1658418339&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-07-21T15:45:39+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>docker</title>
        <link>https://nerdydrunk.com/dokuwiki:docker?rev=1658418339&amp;do=diff</link>
        <description>Dokuwiki Docker

linux docker dokuwiki ubuntu

Prerequisites

Prerequisites - Ubuntu


sudo apt update
sudo apt -y upgrade
sudo apt -y install docker.io docker-compose
sudo usermod -aG docker $USER
sudo reboot
mkdir dokuwiki
cd dokuwiki
mkdir config


Install

Create docker compose file</description>
    </item>
    <item rdf:about="https://nerdydrunk.com/dokuwiki:restore_backup?rev=1658400099&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2022-07-21T10:41:39+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>restore_backup</title>
        <link>https://nerdydrunk.com/dokuwiki:restore_backup?rev=1658400099&amp;do=diff</link>
        <description>DokuWiki Restore from Backup

linux centos aws dokuwiki

Restore from Backup


# Install dependencies
sudo yum install php56 mod24_ssl php56-gd php56-xml php-geshi php-email-address-validation php56-opcache

# Locate most recent backup
aws s3 ls s3://ndbackup-oh-wiki.nerdydrunk.info

# Download most recent backup
aws s3 cp s3://ndbackup-oh-wiki.nerdydrunk.info/2018-05-06-wiki.nerdydrunk.info.tgz ./

# Extract backup
tar zxvf 2018-05-06-wiki.nerdydrunk.info.tgz

# Move backup
sudo mv var/www/wiki…</description>
    </item>
</rdf:RDF>
