Compbio

From MDWiki
Jump to navigationJump to search

Compbio

compbio is one of our servers. This document provides a full description of its services. If a service is moved to another server, please just move the corresponding description to its page.

/robots.txt

User-agent: *
Crawl-delay: 20

User-agent: gsa-crawler
Disallow: /mediawiki/

User-agent: gsa-crawler (Enterprise; S5-DLPQB6D3C8NAS; si@its.uq.edu.au)
Disallow: /mediawiki/

Postfix configuration

To enable sending emails to non-uq.edu.au domains, in /etc/postfix/main.cf the following was set:

relayhost = smtp.uq.edu.au

Mediawiki

This is the software you are looking at now. It's a standard setup except for a few modifications:

in LocalSettings.php:

$wgGroupPermissions['*']['edit'] = false;  # This means you need an account to edit the wiki
$wgEmailAuthentication = true; 
$wgMaxUploadSize    = 16000000; # We found the default was too small

# Installed plugins
require_once("extensions/MWCalendar.php");
require_once("extensions/ConfirmAccount/SpecialConfirmAccount.php");
require_once( "$IP/extensions/UserMerge/UserMerge.php" );
$wgConfirmAccountContact = "t.huber@uq.edu.au";
$wgGroupPermissions['bureaucrat']['usermerge'] = true;

The last lines are to use an extension to ensure all new user requests are manually confirmed by Thomas.