Add MIME type to Apache

How to have Apache serve markdown files as plain/text

Run:
sudo vim /etc/apache2/conf-available/mime.conf

Add your mime type(s):
AddType text/plain .md

Save the file and then enable the config:
sudo a2enconf mime

Now reload apache:
sudo systemctl reload apache2