Server Configuration: Linode¶
This documentation outlines how the Linode “Webster” server was built.
Initial Setup¶
We are using a Linode 1024 with an Ubuntu 16.04 disk instance deployed
from the Rebuild
pane on the Linode dashboard.
Using LISH, we will log in as the root user.
Setting Hostname and Timezone¶
We’ll start by defining the name of our host.
$ echo "delavega" > /etc/hostname
$ hostname -F /etc/hostname
$ vim /etc/hosts
In that file, add delavega
to the end of the second line.
Save and quit.
Now we set the timezone.
$ dpkg-reconfigure tzdata
Use the arrow and ENTER keys to set your timezone.
Reboot the system.
Defining a Non-Root User¶
Next, we’ll use the root account to set up the regular user account.
$ adduser webster
Define the password for the new user, and other information if desired.
Then, we add the user to the sudo
group.
$ usermod -aG sudo webster
$ groups webster
The second command will list all of the groups webster
is in. Ensure
it includes the sudo
group.
Finally, we’ll log out of root…
$ logout
And log in as webster
. Once logged in, we can test out the user’s sudo
abilities by running…
$ sudo echo Hi
If it works, we have set up sudo properly.
Updates¶
Before we continue, we need to check for any updates.
$ sudo apt update
$ sudo apt full-upgrade
Set Up Longview¶
It will be beneficial for us to use the free plan for Longview, a service provided through Linode. Let’s install that now.
On the Linode Manager web interface, go to Longview and add a new client. After a moment, a white box will pop up with a command to run in the server terminal.
It will take a few minutes for Longview to start working, so just close the window on the Linode Manager.
Setup LAMP¶
Apache2¶
We’ll start by setting up Apache2.
$ sudo apt install apache2
Next, we’ll edit the configuration file to turn off KeepAlive
, as that
uses up extra memory (and we don’t have that much to spare).
KeepAlive Off
Save and close.
Next, we’ll change the settings for the mpm_prefork
module.
$ sudo vim /etc/apache2/mods-available/mpm-prefork.conf
Set the file to the following…
<IfModule mpm_prefork_module>
StartServers 2
MinSpareServers 5
MaxSpareServers 10
MaxRequestWorkers 39
MaxConnectionsPerChild 3000
</IfModule>
Save and close. Now we’ll enable the prefork module.
$ sudo a2dismod mpm_event
$ sudo a2enmod mpm_prefork
$ sudo systemctl restart apache2
Next, we will add our user to the wwww-data
group, which will be
helpful for permissions, and we’ll create the directory we’ll be using
for all our websites.
$ sudo usermod -aG www-data webster
$ cd /opt
$ sudo mkdir html
$ sudo chown webster:www-data html
$ sudo chmod 775 html
We need to tell Apache2 to read this directory.
$ sudo vim /etc/apache2/apache2.conf
Scroll down to the section with all the directories, and add this entry:
<Directory /opt/html/>
Options FollowSymLinks
AllowOverride All
Require all granted
</Directory>
Save and close, and then restart Apache2.
$ sudo systemctl restart apache2
Browse to the web server using whatever address is most convenient, and ensure the Apache2 default page is appearing.
Adding Sites¶
We’ll set up a new VirtualHost, so we can get started. You’ll repeat this process for every unique domain.
Note
Since we’re transferring a live site from another shared hosting service, we need to start with a domain that isn’t actively used for much. We’ll transfer each as we get things set up.
$ sudo cp /etc/apache2/sites-available/000-default.conf /etc/apache2/sites-available/mousepawgames.net.conf
$ sudo vim /etc/apache2/sites-available/mousepawgames.net.conf
Set the contents of that file to…
<VirtualHost *:80>
ServerName mousepawgames.net
ServerAdmin webmaster@mousepawmedia.com
DocumentRoot /opt/html/mousepawgames.net
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
Save and close. Now we’ll create the folder for the website in /opt/html
.
$ mkdir /opt/html/mousepawmgames.net
We can also create an index.html
in that folder, with the text “Hello, world!”,
just to make sure the site works.
We’ll be revisiting this later when we set up the other sites.
MySQL¶
Now we will set up our database software.
$ sudo apt install mysql-server
When prompted, set the root password.
PHP¶
We’ll be using PHP 7, which is the default in Ubuntu 16.04, for this server.
$ sudo apt install php7.0 php-pear libapache2-mod-php7.0 php7.0-mysql
$ sudo vim /etc/php/7.0/apache2/php.ini
Edit the contents of that file so the following lines match the given values:
max_input_time = 30
error_reporting = E_COMPILE_ERROR | E_RECOVERABLE_ERROR | E_ERROR | E_CORE_ERROR
error_log = /var/log/php/error.log
Create the log directory for PHP, and give ownership to the Apache2 system user. Finally, restart Apache2 to start using the changes.
$ sudo mkdir /var/log/php
$ sudo chown www-data /var/log/php
$ sudo systemctl restart apache2
Server Hardening¶
Firewall¶
We’ll enable our firewall, and allow SSH and HTTP(S) through.
$ sudo ufw enable
# Open for SSH
$ sudo ufw allow 22
# Open for HTTP
$ sudo ufw allow 80
# Open for HTTPS
$ sudo ufw allow 443
SSH Security¶
We need to lock down SSH for further security.
$ sudo vim /etc/ssh/sshd_config
Edit the file so the following lines have the given settings:
PermitRootLogin no
PasswordAuthentication no
AuthorizedKeysFile %h/.ssh/authorized_keys
Save and close the file, and then run…
$ sudo systemctl restart sshd
Lock Down sudo
Privilege¶
We’ll limit sudo
privileges to only users in the admin
group.
$ sudo groupadd admin
$ sudo usermod -a -G admin <YOUR ADMIN USERNAME>
$ sudo dpkg-statoverride --update --add root admin 4750 /bin/su
Harden Network with sysctl
Settings¶
$ sudo vi /etc/sysctl.conf
Edit the file, uncommenting or adding the following lines:
# IP Spoofing protection
net.ipv4.conf.all.rp_filter = 1
net.ipv4.conf.default.rp_filter = 1
# Ignore ICMP broadcast requests
net.ipv4.icmp_echo_ignore_broadcasts = 1
# Disable source packet routing
net.ipv4.conf.all.accept_source_route = 0
net.ipv6.conf.all.accept_source_route = 0
net.ipv4.conf.default.accept_source_route = 0
net.ipv6.conf.default.accept_source_route = 0
# Ignore send redirects
net.ipv4.conf.all.send_redirects = 0
net.ipv4.conf.default.send_redirects = 0
# Block SYN attacks
net.ipv4.tcp_syncookies = 1
net.ipv4.tcp_max_syn_backlog = 2048
net.ipv4.tcp_synack_retries = 2
net.ipv4.tcp_syn_retries = 5
# Log Martians
net.ipv4.conf.all.log_martians = 1
net.ipv4.icmp_ignore_bogus_error_responses = 1
# Ignore ICMP redirects
net.ipv4.conf.all.accept_redirects = 0
net.ipv6.conf.all.accept_redirects = 0
net.ipv4.conf.default.accept_redirects = 0
net.ipv6.conf.default.accept_redirects = 0
# Ignore Directed pings
net.ipv4.icmp_echo_ignore_all = 1
Finally, reload sysctl
. If there are any errors, fix the associated lines.
$ sudo sysctl -p
Prevent IP Spoofing¶
To prevent IP spoofing, we edit /etc/hosts
.
$ sudo vim /etc/host.conf
Add or edit the following lines.
order bind,hosts
nospoof on
Harden PHP¶
$ sudo vim /etc/php/5.6/apache2/php.ini
Add or edit the following lines and save:
disable_functions = exec,system,shell_exec,passthru
register_globals = Off
expose_php = Off
display_errors = Off
track_errors = Off
html_errors = Off
magic_quotes_gpc = Off
mail.add_x_header = Off
session.name = NEWSESSID
Restart the Apache2 server and make sure it still works.
$ sudo systemctl restart apache2
Harden Apache2¶
Edit the Apache2 security configuration file…
$ sudo vim /etc/apache2/conf-available/security.conf
Change or add the following lines:
ServerTokens Prod
ServerSignature Off
TraceEnable Off
FileETag None
Restart the Apache2 server and make sure it still works.
$ sudo systemctl restart apache2
Setup ModSecurity¶
First, install the necessary dependencies. We’ll also need to create a symbolic link to work around a bug on 64-bit systems. Finally, we’ll install the package itself.
$ sudo apt install libxml2 libxml2-dev libxml2-utils libaprutil1 libaprutil1-dev
$ sudo ln -s /usr/lib/x86_64-linux-gnu/libxml2.so.2 /usr/lib/libxml2.so.2
$ sudo apt install libapache2-mod-security2
Now we’ll copy the default configuration and edit it.
$ sudo mv /etc/modsecurity/modsecurity.conf-recommended /etc/modsecurity/modsecurity.conf
$ sudo vim /etc/modsecurity/modsecurity.conf
Add and edit the lines:
SecRuleEngine On
SecServerSignature FreeOSHTTP
SecRequestBodyLimit 33554432
SecRequestBodyInMemoryLimit 33554432
Those last two lines define the maximum upload size in bytes. At the moment, we’re setting the limit to 32 MB.
Now we download the latest OWASP security rules.
$ cd /etc/modsecurity
$ sudo git clone https://github.com/SpiderLabs/owasp-modsecurity-crs.git
$ cd owasp-modsecurity-crs
$ sudo cp crs-setup.conf.example crs-setup.conf
$ cd rules
$ sudo cp REQUEST-900-EXCLUSION-RULES-BEFORE-CRS.conf.example REQUEST-900-EXCLUSION-RULES-BEFORE-CRS.conf
$ sudo cp RESPONSE-999-EXCLUSION-RULES-AFTER-CRS.conf.example RESPONSE-999-EXCLUSION-RULES-AFTER-CRS.conf
Edit the configuration for the ModSecurity Apache module…
$ sudo vim /etc/apache2/mods-available/security2.conf
Add the following line just below the other IncludeOptional
directive.
IncludeOptional /etc/modsecurity/owasp-modsecurity-crs/crs-setup.conf
IncludeOptional /etc/modsecurity/owasp-modsecurity-crs/rules/*.conf
Enable the modules and restart Apache2, ensuring that it still works.
$ sudo a2enmod headers
$ sudo a2enmod security2
$ sudo systemctl restart apache2
Finally, to make sure it works, go to http://<serveraddress>/?param="><script>alert(1);</script>
.
Check /var/log/apache2/error.log
for an error report from mod_security
.
If one is there, the configuration worked!
Setup ModEvasive¶
To harden against DDoS attacks, we’ll install ModEvasive.
$ sudo apt install libapache2-mod-evasive
For the Postfix Configuration
, select Local Only
and use the default
FQDN (ubuntu.members.linode.com
). We will be changing this later.
Now we’ll create the log directory for ModEvasive and set its permissions accordingly.
$ sudo mkdir /var/log/mod_evasive
$ sudo chown www-data:www-data /var/log/mod_evasive/
Edit the ModEvasive configuration file…
$ sudo vim /etc/apache2/mods-available/evasive.conf
Modify the file to match the following.
<ifmodule mod_evasive20.c>
DOSHashTableSize 3097
DOSPageCount 15
DOSSiteCount 50
DOSPageInterval 1
DOSSiteInterval 1
DOSBlockingPeriod 10
DOSLogDir /var/log/mod_evasive
DOSEmailNotify webster@ubuntu.members.linode.com
DOSWhitelist 127.0.0.1
</ifmodule>
There is also a bug reported for Ubuntu 12.04 regarding email. I don’t know if it’s fixed, but the workaround doesn’t hurt anything anyway.
$ sudo ln -s /etc/alternatives/mail /bin/mail/
Enable the modules and restart Apache2, ensuring that it still works.
$ sudo a2enmod evasive
$ sudo systemctl restart apache2
Setup DenyHosts¶
DenyHosts blocks SSH attacks and tracks suspicious IPs.
$ sudo apt install denyhosts
$ sudo vim /etc/denyhosts.conf
Edit the following lines:
ADMIN_EMAIL = hawksnest@localhost
SMTP_FROM = DenyHosts
SYSLOG_REPORT = YES
Setup Fail2Ban¶
Fail2Ban does much the same things as DenyHosts, but its coverage includes Apache, FTP, and other things.
$ sudo apt install fail2ban
$ sudo vim /etc/fail2ban/jail.conf
To turn on various “jails”, scroll down to the # JAILS
section. Place
enabled = true
under each jail name you want turned on. This is the list
of jails we enabled:
sshd
sshd-ddos
apache-auth
apache-badbots
apache-noscript
apache-overflows
apache-nohome
apache-botsearch
apache-fakegooglebot
apache-modsecurity
apache-shellshock
We also need to modify a file for apache-fakegooglebot
to work around a bug.
If you run python -V
and it reports a version of Python2 (which it almost
certainly will), run…
$ sudo vim /etc/fail2ban/filter.d/ignorecommands/apache-fakegooglebot
Change the first line to #!/usr/bin/python3
, and then save and close.
SOURCE: Fail2Ban fakegooglebot Jail Bug (Shell and Co)
Finally, restart the fail2ban process.
$ sudo systemctl restart fail2ban
Setup PSAD¶
$ sudo apt install psad
$ sudo vim /etc/psad/psad.conf
Change “EMAIL_ADDRESS” to webster@localhost
and “HOSTNAME” to
delavega
.
$ sudo iptables -A INPUT -j LOG
$ sudo iptables -A FORWARD -j LOG
$ sudo ip6tables -A INPUT -j LOG
$ sudo ip6tables -A FORWARD -j LOG
$ sudo psad -R
$ sudo psad --sig-update
$ sudo psad -H
$ sudo psad --Status
When you run that last command, it may whine about not finding a pidfile. It appears we can ignore that error.
We also need to tweak Fail2Ban so that it doesn’t start up before psad
does.
Otherwise, psad
won’t be able to log correctly.
$ sudo vim /lib/systemd/system/fail2ban.service
In that file, add ufw.service
and psad.service
to the After=
directive,
so it looks something like this:
After=network.target iptables.service firewalld.service ufw.service psad.service
Save and close, and then reload the daemons for systemctl and restart fail2ban.
$ sudo systemctl daemon-reload
$ sudo systemctl restart fail2ban
Now we need to adjust the UFW settings.
$ sudo ufw logging high
$ sudo vim /etc/ufw/before.rules
Add the following lines before the final commit message:
-A INPUT -j LOG
-A FORWARD -j LOG
Save and close. Repeat this with before6.rules
. Then, restart ufw and
reload PSAD.
SOURCE: PSAD Is Giving a Firewall Setup Warning (Ubuntu Forums)
$ sudo systemctl restart ufw
$ sudo psad --fw-analyze
Restart the computer, and ensure PSAD isn’t sending any system emails
complaining about the firewall configuration. (Check system email by
running $ mail
).
Rootkit Checks¶
We use two different rootkit checkers.
$ sudo apt install rkhunter chkrootkit
We have a script set up on the system that runs the following…
#!/bin/bash
sudo ckrootkit
sudo rkhunter --update
sudo rkhunter --propupd
sudo rkhunter --check --cronjob -l
echo "Rootkit Check Done!"
Miscellaneous¶
These are a few other useful programs.
$ sudo apt install nmap logwatch libdate-manip-perl apparmor apparmor-profiles tiger clamav
# Ensure apparmor is working.
$ sudo apparmor_status
To use logwatch, run…
$ sudo logwatch | less
To scan for vulnerabilites with Tiger, run…
$ sudo tiger
$ sudo less /var/log/tiger/security.report.*
Let’s Encrypt Certificates¶
We’ll install the Let’s Encrypt Certbox, and then create our server
certificates. While we can technically install the letsencrypt
package, it’s out of date compared to certbot-auto
.
$ cd /opt
$ sudo mkdir certbot
$ cd certbot
$ sudo wget https://dl.eff.org/certbot-auto
$ sudo chmod a+x certbot-auto
When we get our certificates, we want all the domains to point to the same webroot. Thus, we need to turn on our default site, and turn off the others.
$ sudo a2dissite mousepawgames.net
$ sudo a2ensite 000-default
$ sudo systemctl reload apache2
Now we’ll get our certificates.
$ sudo /opt/certbot/certbot-auto certonly -a webroot --webroot-path /var/www/html -d mousepawgames.net -d mail.mousepawgames.net -d indeliblebluepen.com -d www.indeliblebluepen.com -d mousepawmedia.com -d www.mousepawmedia.com -d mail.mousepawmedia.com -d standards.mousepawmedia.com -d docs.mousepawmedia.com -d staff.mousepawmedia.com -d webmail.mousepawmedia.com -d mousepawgames.com -d www.mousepawgames.com -d survey.mousepawmedia.com
Of course, we would change the mousepawgames.net
part to match the domain
name we’re getting the certificate for.
Note
If you’re needing to add a domain or subdomain to an existing
certificate, use the command above, and include the --expand
flag
as the first argument after certonly
.
Follow the instructions on the screen to complete the process of getting the
certificates. If successful, they can be found (visible only as root) in
/etc/letsencrypt/live/mousepawgames.net
(change the folder name to
match the domain, of course).
We also need to add a special configuration file that Apache2 will use with the certificates.
$ sudo /etc/letsencrypt/options-ssl-apache.conf
Set the contents of that file to the following.
# Baseline setting to Include for SSL sites
SSLEngine on
# Intermediate configuration, tweak to your needs
SSLProtocol all -SSLv2 -SSLv3 -TLSv1 -TLSv1.1
SSLCipherSuite ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-DSS-AES128-GCM-SHA256:kEDH+AESGCM:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA:ECDHE-ECDSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-DSS-AES128-SHA256:DHE-RSA-AES256-SHA256:DHE-DSS-AES256-SHA:DHE-RSA-AES256-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:AES:DES-CBC3-SHA:!CAMELLIA:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!MD5:!PSK:!aECDH:!EDH-DSS-DES-CBC3-SHA:!EDH-RSA-DES-CBC3-SHA:!KRB5-DES-CBC3-SHA
SSLHonorCipherOrder on
SSLCompression off
SSLOptions +StrictRequire
# Add vhost name to log entries:
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-agent}i\"" vhost_combined
LogFormat "%v %h %l %u %t \"%r\" %>s %b" vhost_common
#CustomLog /var/log/apache2/access.log vhost_combined
#LogLevel warn
#ErrorLog /var/log/apache2/error.log
# Always ensure Cookies have "Secure" set (JAH 2012/1)
#Header edit Set-Cookie (?i)^(.*)(;\s*secure)??((\s*;)?(.*)) "$1; Secure$3$4"
Save and close.
Renewal Scripts¶
There are a few things we’ll need to do every time the certificate is renewed. Perhaps most important, we need to copy the certs over to a new folder and change their permissions, so they can be used by various parts of our server setup.
We’ll start by creating a special group for accessing certificates.
$ sudo groupadd certs
Now we’ll create a directory for the copied certs, and make the script file.
$ cd /etc/apache2
$ sudo mkdir certs
$ cd certs
$ sudo vim renewcert_pre
Put the following contents into that file. Comment out the lines regarding the sites you do not have. Be sure to uncomment them later!
#!/bin/bash
a2dissite mousepawgames.net 000-mousepawmedia.com mousepawgames.com standards docs indeliblebluepen.com codemouse92.com roundcube staff survey
a2ensite 000-default
systemctl reload apache2
Save and close. Now, let’s create the post script.
$ sudo vim renewcert_post
Put the following contents into that file. Comment out the lines regarding the sites you do not have. Be sure to uncomment them later!
#!/bin/bash
# Work out of the certificate's working directory.
cd /etc/apache2/certs
# Copy the certificates over and update their permissions.
cp /etc/letsencrypt/live/mousepawgames.net/*.pem ./
chgrp certs ./*.pem
chmod u=rw,g=r,o= ./*.pem
# Restore the sites and restart critical services which use this.
a2dissite 000-default
a2ensite mousepawgames.net 000-mousepawmedia.com mousepawgames.com standards docs indeliblebluepen.com codemouse92.com roundcube staff survey
systemctl restart apache2
Save and close. Change the script permissions so it can only be read, accessed, and run by its owner and group (both root).
$ sudo chmod 770 renewcert_pre
$ sudo chmod 770 renewcert_post
Finally, we’ll test the configuration.
$ sudo /opt/certbot/certbot-auto renew --dry-run --pre-hook "/etc/apache2/certs/renewcert_pre" --post-hook "/etc/apache2/certs/renewcert_post"
Note
The expansion script is below.
$ sudo /opt/certbot/certbot-auto certonly --expand -a webroot --webroot-path /var/www/html -d mousepawgames.net -d mail.mousepawgames.net -d indeliblebluepen.com -d www.indeliblebluepen.com -d mousepawmedia.com -d www.mousepawmedia.com -d mail.mousepawmedia.com -d standards.mousepawmedia.com -d staff.mousepawmedia.com -d docs.mousepawmedia.com -d webmail.mousepawmedia.com -d mousepawgames.com -d www.mousepawgames.com --pre-hook "/etc/apache2/certs/renewcert_pre" --post-hook "/etc/apache2/certs/renewcert_post"
Scheduling Auto-Renewal¶
Now we need to schedule the autorenewal task.
$ sudo mkdir -p /opt/scripts/root_scripts
$ cd /opt/scripts
$ sudo chown root:root root_scripts
$ sudo chmod 770 root_scripts
$ sudo su
$ cd /opt/scripts/root_scripts
$ vim renewcert
Set the contents of that file to the following…
#!/bin/bash
/opt/certbot/certbot-auto renew --pre-hook "/etc/apache2/certs/renewcert_pre" --post-hook "/etc/apache2/certs/renewcert_post"
Save and close. Then run…
$ exit
$ sudo crontab -e
Add the following line to the end:
41 5 * * * /opt/scripts/root_scripts/renewcerts
This will run the renewal script once a day at 5:41am. (Let’s Encrypt asks that a random time be used by each user, to spread out server load.)
Using Certificates¶
Let’s adjust our site so we can use this certificate now.
$ sudo a2enmod ssl rewrite
$ sudo vim /etc/apache2/sites-available/mousepawgames.net
Set the contents of that file to…
<IfModule mod_ssl.c>
<VirtualHost *:443>
ServerName mousepawgames.net
ServerAdmin webmaster@mousepawmedia.com
DocumentRoot /opt/html/mousepawgames.net
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
<Directory /opt/html/mousepawgames.net>
Options -MultiViews -Indexes
AllowOverride All
</Directory>
# SSL
SSLEngine on
SSLCertificateFile /etc/apache2/certs/fullchain.pem
SSLCertificateKeyFile /etc/apache2/certs/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
<FilesMatch "\.(cgi|shtml|phtml|php)$">
SSLOptions +StdEnvVars
</FilesMatch>
<Directory /usr/lib/cgi-bin>
SSLOptions +StdEnvVars
</Directory>
</VirtualHost>
</IfModule>
<VirtualHost *:80>
ServerName mousepawgames.net
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI}
</VirtualHost>
Save and close, and then restart Apache2.
$ sudo systemctl restart apache2
FTP¶
While SSH is usually advisable for working with files, sometimes you also need FTP (such as for updating Wordpress).
We’ll start by installing vsftpd
and updating its configuration.
$ sudo apt install vsftpd
$ sudo vim /etc/vsftpd.conf
Change the following settings to match what’s shown here, uncommenting the line if necessary:
anonymous_enable=NO
local_enable=YES
write_enable=YES
local_umask=022
rsa_cert_file=/etc/apache2/certs/cert.pem
rsa_private_key_file=/etc/apache2/certs/privkey.pem
ssl_enable=YES
In short, we are requiring a username and password (anonymous is off), using the local UNIX users for credentials, and allowing file writing.
We set the umask for uploaded files so that read-write permissions can be set for the owner, but only read permissions for all other users.
We are also setting FTP to work over SSL (FTPS) using our Let’s Encrypt certificate.
Save and close, and then start vsftpd
.
$ sudo systemctl start vsftpd
Now we can use the credentials for the webster
system user for FTPS.
Server Controls¶
PHPMyAdmin¶
$ sudo apt-get update
$ sudo apt-get install phpmyadmin
On the configuration dialog, select apache2
by selecting it and tapping
Space. Enter an application password (different from the MySQL root
password) and confirm it.
Edit the configuration for PHP, to force HTTPS.
$ sudo vim /etc/phpmyadmin/config.inc.php
Add the following line to the bottom of that file.
$cfg['ForceSSL'] = true;
Save and close.
Now enable two necessary PHP modules and restart Apache2.
$ sudo phpenmod mcrypt
$ sudo phpenmod mbstring
$ sudo systemctl restart apache2
Validate that you can https://<serveraddress>/phpmyadmin
.
Warning
You may need to disable the Apache2 module security2
before you can access PHPMyAdmin. Otherwise, it throws an internal 404.
We’re not sure why. To fix the problem, run sudo a2dismod security2
and
restart the Apache2 service.
Control Access Switch¶
For security reasons, we want to be able to turn on and off controls like PHPMyAdmin using a script.
$ sudo vim /opt/scripts/sys_scripts/controls
The contents of that file are as follows.
#!/bin/bash
set -e
case $1 in
'on')
sudo a2dismod security2
sudo a2enconf phpmyadmin
sudo systemctl restart apache2
echo "Admin control panels are turned ON."
;;
'off')
sudo a2enmod security2
sudo a2disconf phpmyadmin
sudo systemctl restart apache2
echo "Admin control panels are turned OFF."
;;
*)
echo "You must specify 'on' or 'off'."
exit 1
;;
esac
Email Server¶
Postfix Setup¶
These instructions assume you’ve already configured your DNS correctly, according to Linode’s instructions. (See the SOURCE at the bottom of this section.)
We’ll start by installing the necessary software.
$ sudo apt install postfix postfix-mysql dovecot-core dovecot-imapd dovecot-pop3d dovecot-lmtpd dovecot-mysql
$ sudo dpkg-configure postfix
This time, select the following options:
Internet Site
mousepawgames.net
webster
$myhostname, localhost, delavega, ubuntu.members.linode.com, mousepawmedia.com, mousepawgames.com, indeliblebluepen.com
Force Synchronous Updates? No
(Default)
0
+
all
Postfix is now configured.
MySQL Setup¶
Now we can set up the MySQL database. Replace password
with a unique
password.
$ mysqladmin -u root -p create mailserver
$ mysql -u root -p mailserver
GRANT SELECT ON mailserver.* TO 'postmaster'@'localhost' IDENTIFIED BY 'password';
FLUSH PRIVILEGES;
exit
We’ll be setting up the tables in the next step.
Postfix Admin¶
Let’s install a control panel for managing Postfix. We want the latest version from Github, instead of the outdated one in the repos. This will also define our tables.
$ cd /opt
$ sudo wget https://github.com/postfixadmin/postfixadmin/archive/postfixadmin-3.0.2.zip
$ sudo unzip postfixadmin-3.0.2.zip
$ sudo mv postfixadmin-postfixadmin-3.0.2 postfixadmin
$ sudo chown -R webster:www-data postfixadmin
Now we need to either add or edit a configuration file for postfixadmin in Apache2.
$ sudo vim /etc/apache2/conf-available/postfixadmin
Set the contents of that file to…
Alias /postfixadmin /opt/postfixadmin
Save and close, and then edit Apache2’s main configuration…
$ sudo vim /etc/apache2/apache2.conf
Adding the following.
<Directory /opt/postfixadmin>
AllowOverride None
Require all granted
</Directory>
Save and close, and then load our configuration and reload Apache2.
$ sudo a2enconf postfixadmin
$ sudo systemctl reload apache2
When prompted, create a unique password for the application to access MySQL.
Now open the database configuration…
$ sudo vim /opt/postfixadmin/config.inc.php
In that file, change the following lines to match the given values. Of course,
be sure to replace PASSWORD
with the actual database password…
$CONF['database_user'] = 'postfixadmin';
$CONF['database_password'] = 'PASSWORD';
$CONF['database_name'] = 'mailserver';
You may also want to change the welcome message sent to new users. The following is the setting for our setup.
$CONF['welcome_text'] = <<<EOM
Welcome to MousePaw Media!
Your company account has been activated, and can be used to sign into any part
of the Staff Network.
Please remember: the email system is available 24/7, while the rest of the
Staff Network (anything at mousepawmedia.net) is only available 7am-10pm Pacific
Time.
The best way to get started is to follow the Staff Introduction
(https://mousepawmedia.net/help/guides/staff.html) and all the tutorials it
links to, preferably in order. (If you are already running Linux on your machine,
you can skip that section of the Introduction.)
We can answer questions and help you get started beyond that tutorial;
just email your internship supervisor, or send a message to
eco@mousepawmedia.com if in doubt of who to contact.
Once again, please let us know if you run into any trouble or have any questions.
Welcome aboard!
EOM;
Save and close.
Then, using PHPMyAdmin, grant the postfixadmin
user full permissions
over the mailserver
database.
Finally, navigate to https://<serveraddress>/postfixadmin/setup.php
and follow the instructions to set the setup password and proceed with
setup.
You will also want to add postfixadmin
to your script for toggling
admin controls.
$ sudo vim /opt/scripts/sys_scripts/controls
The edited script is below.
#!/bin/bash
set -e
case $1 in
'on')
sudo a2dismod security2
sudo a2enconf phpmyadmin
sudo a2enconf postfixadmin
sudo systemctl restart apache2
echo "Admin control panels are turned ON."
;;
'off')
sudo a2enmod security2
sudo a2disconf phpmyadmin
sudo a2disconf postfixadmin
sudo systemctl restart apache2
echo "Admin control panels are turned OFF."
;;
*)
echo "You must specify 'on' on 'off'."
exit 1
;;
Save and close.
Postfix Configuration, Round Two¶
We need to further adjust Postfix. We’ll make a backup of the configuration file, and then start making our edits.
$ sudo cp /etc/postfix/main.cf /etc/postfix/main.cf.orig
$ sudo vim /etc/postfix/main.cf
Edit the file to match the following:
# See /usr/share/postfix/main.cf.dist for a commented, more complete version
# Debian specific: Specifying a file name will cause the first
# line of that file to be used as the name. The Debian default
# is /etc/mailname.
#myorigin = /etc/mailname
smtpd_banner = $myhostname ESMTP $mail_name (Ubuntu)
biff = no
# appending .domain is the MUA's job.
append_dot_mydomain = no
# Uncomment the next line to generate "delayed mail" warnings
#delay_warning_time = 4h
readme_directory = no
# TLS parameters
smtpd_tls_cert_file=/etc/apache2/certs/cert.pem
smtpd_tls_CAfile=/etc/apache2/certs/chain.pem
smtpd_tls_CApath=/etc/apache2/certs
smtpd_tls_key_file=/etc/apache2/certs/privkey.pem
smtpd_use_tls=yes
#smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
#smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache
smtp_tls_mandatory_protocols=!SSLv2, !SSLv3, !TLSv1, !TLSv1.1
smtpd_tls_mandatory_protocols=!SSLv2, !SSLv3, !TLSv1, !TLSv1.1
smtp_tls_protocols=!SSLv2, !SSLv3, !TLSv1, !TLSv1.1
smtpd_tls_protocols=!SSLv2, !SSLv3, !TLSv1, !TLSv1.1
smtpd_tls_security_level=may
smtp_tls_security_level=may
# Enabling SMTP for authenticated users, and handing off authentication to Dovecot
smtpd_sasl_type = dovecot
smtpd_sasl_path = private/auth
smtpd_sasl_auth_enable = yes
smtpd_recipient_restrictions =
permit_sasl_authenticated,
permit_mynetworks,
reject_unauth_destination
# See /usr/share/doc/postfix/TLS_README.gz in the postfix-doc package for
# information on enabling SSL in the smtp client.
#smtpd_relay_restrictions = permit_mynetworks permit_sasl_authenticated defer_unauth_destination
myhostname = mousepawmedia.com
mydomain = mail.mousepawmedia.com
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
myorigin = /etc/mailname
mydestination = localhost
relayhost =
mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128
mailbox_size_limit = 0
recipient_delimiter = +
inet_interfaces = all
# Handing off local delivery to Dovecot's LMTP, and telling it where to store mail
virtual_transport = lmtp:unix:private/dovecot-lmtp
#Virtual domains, users, and aliases
virtual_mailbox_domains = mysql:/etc/postfix/mysql-virtual-mailbox-domains.cf
virtual_mailbox_maps = mysql:/etc/postfix/mysql-virtual-mailbox-maps.cf
virtual_alias_maps = mysql:/etc/postfix/mysql-virtual-alias-maps.cf,
mysql:/etc/postfix/mysql-virtual-email2email.cf
#default_transport = smtp
#relay_transport = smtp
#inet_protocols = all
Save and close. Now we need to edit four files. In each, be sure to replace
mailuserpass
with the password for the postmaster
MySQL user we set
earlier.
$ sudo vim /etc/postfix/mysql-virtual-mailbox-domains.cf
Set the contents to:
user = postmaster
password = mailuserpass
hosts = 127.0.0.1
dbname = mailserver
query = SELECT 1 FROM domain WHERE domain='%s'
Save and close, then run…
$ sudo vim /etc/postfix/mysql-virtual-mailbox-maps.cf
Set the contents to:
user = postmaster
password = mailuserpass
hosts = 127.0.0.1
dbname = mailserver
query = SELECT 1 FROM mailbox WHERE username='%s'
Save and close, then run…
$ sudo vim /etc/postfix/mysql-virtual-alias-maps.cf
Set the contents to:
user = postmaster
password = mailuserpass
hosts = 127.0.0.1
dbname = mailserver
query = SELECT goto FROM alias WHERE address='%s'
Save and close, then run…
$ sudo vim /etc/postfix/mysql-virtual-email2email.cf
Set the contents to:
user = postmaster
password = mailuserpass
hosts = 127.0.0.1
dbname = mailserver
query = SELECT username FROM mailbox WHERE username='%s'
Save and close. Then we’ll restart postfix and test things. Note the comments below, displaying the expected output.
$ sudo systemctl restart postfix
$ sudo postmap -q mousepawgames.net mysql:/etc/postfix/mysql-virtual-mailbox-domains.cf
# EXPECTED OUTPUT: 1
$ sudo postmap -q test@mousepawgames.net mysql:/etc/postfix/mysql-virtual-mailbox-maps.cf
# EXPECTED OUTPUT: 1
$ sudo postmap -q test2@mousepawgames.net mysql:/etc/postfix/mysql-virtual-alias-maps.cf
# EXPECTED OUTPUT: test@mousepawgames.net
If we got the expected outputs, we’re doing great! Now we need to edit another configuration file.
$ sudo cp /etc/postfix/master.cf /etc/postfix/master.cf.orig
$ sudo vim /etc/postfix/master.cf
Uncomment the two lines starting with submission
and smtps
, as well as
the block of lines starting with -o
after each. Thus, the first part of
that file should look like this:
#
# Postfix master process configuration file. For details on the format
# of the file, see the master(5) manual page (command: "man 5 master").
#
# Do not forget to execute "postfix reload" after editing this file.
#
# ==========================================================================
# service type private unpriv chroot wakeup maxproc command + args
# (yes) (yes) (yes) (never) (100)
# ==========================================================================
smtp inet n - - - - smtpd
#smtp inet n - - - 1 postscreen
#smtpd pass - - - - - smtpd
#dnsblog unix - - - - 0 dnsblog
#tlsproxy unix - - - - 0 tlsproxy
submission inet n - - - - smtpd
-o syslog_name=postfix/submission
-o smtpd_tls_security_level=encrypt
-o smtpd_sasl_auth_enable=yes
-o smtpd_client_restrictions=permit_sasl_authenticated,reject
-o milter_macro_daemon_name=ORIGINATING
smtps inet n - - - - smtpd
-o syslog_name=postfix/smtps
-o smtpd_tls_wrappermode=yes
-o smtpd_sasl_auth_enable=yes
-o smtpd_client_restrictions=permit_sasl_authenticated,reject
-o milter_macro_daemon_name=ORIGINATING
Save and close. Then we’ll fix some permissions, restart postfix, and move on to the next piece of the email server system.
$ sudo chmod -R o-rwx /etc/postfix
$ sudo systemctl restart postfix
Dovecot¶
Let’s setup the other half of the mail system - Dovecot. First, we want to make copies of our configuration files before we start changing stuff, just in case.
$ sudo cp /etc/dovecot/dovecot.conf /etc/dovecot/dovecot.conf.orig
$ sudo cp /etc/dovecot/conf.d/10-mail.conf /etc/dovecot/conf.d/10-mail.conf.orig
$ sudo cp /etc/dovecot/conf.d/10-auth.conf /etc/dovecot/conf.d/10-auth.conf.orig
$ sudo cp /etc/dovecot/dovecot-sql.conf.ext /etc/dovecot/dovecot-sql.conf.ext.orig
$ sudo cp /etc/dovecot/conf.d/10-master.conf /etc/dovecot/conf.d/10-master.conf.orig
$ sudo cp /etc/dovecot/conf.d/10-ssl.conf /etc/dovecot/conf.d/10-ssl.conf.orig
$ sudo vim /etc/dovecot/dovecot.conf
Edit that file, adding the last line in the sample below in the indicated position:
## Dovecot configuration file
# If you're in a hurry, see http://wiki2.dovecot.org/QuickConfiguration
# "doveconf -n" command gives a clean output of the changed settings. Use it
# instead of copy&pasting files when posting to the Dovecot mailing list.
# '#' character and everything after it is treated as comments. Extra spaces
# and tabs are ignored. If you want to use either of these explicitly, put the
# value inside quotes, eg.: key = "# char and trailing whitespace "
# Default values are shown for each setting, it's not required to uncomment
# those. These are exceptions to this though: No sections (e.g. namespace {})
# or plugin settings are added by default, they're listed only as examples.
# Paths are also just examples with the real defaults being based on configure
# options. The paths listed here are for configure --prefix=/usr
# --sysconfdir=/etc --localstatedir=/var
# Enable installed protocols
!include_try /usr/share/dovecot/protocols.d/*.protocol
protocols = imap pop3 lmtp
Save and close, and then open the next config file…
$ sudo vim /etc/dovecot/conf.d/10-mail.conf
Search for and modify the following lines (they’re not together in the file):
mail_location = maildir:/var/mail/vhosts/%d/%n
mail_privileged_group = mail
Save and close. Next, we need to verify some permissions, so run…
$ ls -ld /var/mail
Ensure the output is:
drwxrwsr-x 2 root mail 4096 Mar 6 15:08 /var/mail
Then, we’ll add subdirectories for each domain we’ll be receiving email on.
$ sudo mkdir -p /var/mail/vhosts/mousepawgames.net
$ sudo mkdir -p /var/mail/vhosts/mousepawgames.com
$ sudo mkdir -p /var/mail/vhosts/mousepawmedia.com
$ sudo mkdir -p /var/mail/vhosts/indeliblebluepen.com
Now we need to set up a vmail
user.
$ sudo groupadd -g 5000 vmail
$ sudo useradd -g vmail -u 5000 vmail -d /var/mail
We’ll transfer ownership of the mail directory and all its
contents to the vmail
user.
$ sudo chown -R vmail:vmail /var/mail
Now we edit another configuration.
$ sudo vim /etc/dovecot/conf.d/10-auth.conf
Change or add the following lines. Notice that the last two are just being commented or uncommented:
auth_mechanisms = plain login
disable_plaintext_auth = yes
#!include auth-system.conf.ext
!include auth-sql.conf.ext
Save and close. Then, run…
$ sudo vim /etc/dovecot/conf.d/auth-sql.conf.ext
Ensure the following lines match and are uncommented:
passdb {
driver = sql
args = /etc/dovecot/dovecot-sql.conf.ext
}
userdb {
driver = static
args = uid=vmail gid=vmail home=/var/mail/vhosts/%d/%n
}
Save and close. Then, run…
$ sudo vim /etc/dovecot/dovecot-sql.conf.ext
Find, uncomment, and edit the following lines so they match, replacing
userpassword
with the actual password for the postmaster
MySQL
account:
driver = mysql
connect = host=127.0.0.1 dbname=mailserver user=postmaster password=userpassword
default_pass_scheme = MD5-CRYPT
user_query = SELECT CONCAT('/var/mail/vmail/', maildir) AS home, 1001 AS uid, 1001 AS gid, CONCAT('*:bytes=', quota) AS quota_rule FROM mailbox WHERE username = '%u' AND active='1'
password_query = SELECT username AS user,password FROM mailbox WHERE username = '%u' AND active='1'
Save and close. Then, we’ll adjust a few more permissions and edit the sockets configuration file.
$ sudo chown -R vmail:dovecot /etc/dovecot
$ sudo chmod -R o-rwx /etc/dovecot
$ sudo vim /etc/dovecot/conf.d/10-master.conf
We’re going to disable IMAP and POP3 (the unencrypted forms) and instead use the secure versions (IMAPS and POP3S). Edit the following lines of code. Be careful of the nested code and brackets:
service imap-login {
inet_listener imap {
port = 0
}
inet_listener imaps {
port = 993
ssl = yes
}
service pop3-login {
inet_listener pop3 {
port = 0
}
inet_listener pop3s {
port = 995
ssl = yes
}
}
service lmtp {
unix_listener /var/spool/postfix/private/auth {
mode = 0666
user = postfix
group = postfix
}
service auth {
unix_listener auth-userdb {
mode = 0666
user = vmail
#group =
}
# Postfix smtp-auth
unix_listener /var/spool/postfix/private/auth {
mode = 0666
user = postfix
group = postfix
}
# Auth process is run as this user.
#user = $default_internal_user
user = dovecot
}
service auth-worker {
# Auth worker process is run as root by default, so that it can access
# /etc/shadow. If this isn't necessary, the user should be changed to
# $default_internal_user.
user = vmail
}
Save and close. Now we’ll configure Dovecot to use our Let’s Encrypt certificate.
$ sudo vim /etc/dovecot/conf.d/10-ssl.conf
Uncomment and change the following lines:
# SSL/TLS support: yes, no, required. <doc/wiki/SSL.txt>
ssl = required
# PEM encoded X.509 SSL/TLS certificate and private key. They're opened before
# dropping root privileges, so keep the key file unreadable by anyone but
# root. Included doc/mkcert.sh can be used to easily generate self-signed
# certificate, just make sure to update the domains in dovecot-openssl.cnf
ssl_cert = </etc/apache2/certs/cert.pem
ssl_key = </etc/apache2/certs/privkey.pem
ssl_ca = </etc/apache2/certs/chain.pem
ssl_protocols = !SSLv2 !SSLv3 !TLSv1 !TLSv1.1 # use for <= v2.2
# ssl_min_protocol = TLSv1.2 # use for Dovecot >= v2.3
# SSL ciphers to use
ssl_cipher_list = ALL:HIGH:!SSLv2:!MEDIUM:!LOW:!EXP:!RC4:!MD5:!aNULL:@STRENGTH
Save and close, and then restart both Postfix and Dovecot.
$ sudo systemctl restart postfix dovecot
Firewall Settings¶
Now we need to open the firewall to allow email to pass through.
$ sudo ufw allow 25
$ sudo ufw allow 465
$ sudo ufw allow 587
$ sudo ufw allow 993
$ sudo ufw allow 995
Note
By this point, the email system should be 100% functional, sending and receiving email and serving it to clients over POPS3, IMAPS, and SMTPS. Test this out before continuing! Note the debugging instructions below.
Debugging¶
Errors can usually be found by running sudo systemctl status postfix
and
sudo systemctl status postfix
, with the full logs visible at
/var/log/mail.log
.
You can check postfix’s delivery queue with postqueue -p
, and attempt to
clear it (deliver everything) with postqueue -f
.
MXToolbox SuperTool can be used to
check for DNS and MX issues. Enter the domain and select Test Email Server
from the options.
Mail Server Security (DKIM, SPF, and Postfix)¶
Setup¶
First, we’ll install the packages we need.
$ sudo apt install opendkim opendkim-tools postfix-policyd-spf-python
We also need the postfix
user to be a member of the group for opendkim.
$ sudo adduser postfix opendkim
SPF¶
The purpose of SPF is to prevent spoofing and other email fraud. There are a couple of approaches for this, but we want to link all hosts listed in our MX records to our server.
Go to the Linode DNS manager for the domain in question, and add a new
TXT Records
. Leave the Name
blank, and set the Value
to the
following:
v=spf1 mx -all
Now we need to edit our mail server to work with SPF.
$ sudo vim /etc/postfix-policyd-spf-python/policyd-spf.conf
Change the following lines:
HELO_reject = False
Mail_From_reject = False
Save and close, then run…
$ sudo vim /etc/postfix/master.cf
Add the following to the bottom of that file:
policyd-spf unix - n n - 0 spawn
user=policyd-spf argv=/usr/bin/policyd-spf
Save and close, then run…
$ sudo vim /etc/postfix/main.cf
Edit the following section to include the last line in the example below, also ensuring that a comma is at the end of every line except the last one:
smtpd_recipient_restrictions =
permit_sasl_authenticated,
permit_mynetworks,
reject_unauth_destination,
check_policy_service unix:private/policyd-spf
Also add the following line to the bottom:
policyd-spf_time_limit = 3600
Save and close, and then restart Postfix.
Warning
Be very careful with your configurations! Continue to test your email send/receive periodically, to make sure nothing breaks. Some email can actually get lost or be eaten if your settings are wrong, and you don’t want important messages going into a black hole.
To test, send a message TO an account on your mail server, and check the headers. You should see a line something like this:
Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=2607:f8b0:400e:c05::22a; helo=mail-pg0-x22a.google.com; envelope-from=someemail@example.com; receiver=test@mousepawgames.net
You should also see something like the following in /var/log/mail.log
:
ubuntu policyd-spf[18663]: None; identity=helo; client-ip=2607:f8b0:400e:c00::22e; helo=mail-pf0-x22e.google.com; envelope-from=someemail@example.com; receiver=test@mousepawgames.net
ubuntu policyd-spf[18663]: Pass; identity=mailfrom; client-ip=2607:f8b0:400e:c00::22e; helo=mail-pf0-x22e.google.com; envelope-from=someemail@example.com; receiver=test@mousepawgames.net
OpenDKIM¶
DKIM allows us to verify that messages sent from our server really did come from us, which further helps ensure the safety and validity of our messages, and avoid winding up in spam.
We’ll start by modifying the configuration for OpenDKIM…
$ sudo vim /etc/opendkim.conf
Edit to make it match the following:
# Log to syslog
Syslog yes
# Required to use local socket with MTAs that access the socket as a non-
# privileged user (e.g. Postfix)
UMask 002
# OpenDKIM user
# Remember to add user postfix to group opendkim
UserID opendkim
# Map domains in From addresses to keys used to sign messages
KeyTable /etc/opendkim/key.table
SigningTable refile:/etc/opendkim/signing.table
# Hosts to ingore when verifying signatures
ExternalIgnoreList /etc/opendkim/trusted.hosts
InternalHosts /etc/opendkim/trusted.hosts
# Sign for example.com with key in /etc/dkimkeys/dkim.key using
# selector '2007' (e.g. 2007._domainkey.example.com)
#Domain example.com
#KeyFile /etc/dkimkeys/dkim.key
#Selector 2007
# Commonly-used options; the commented-out versions show the defaults.
#Canonicalization simple
Canonicalization relaxed/simple
Mode sv
SubDomains no
#ADSPAction continue
AutoRestart yes
AutoRestartRate 10/1M
Background yes
DNSTimeout 5
SignatureAlgorithm rsa-sha256
# Always oversign From (sign using actual From and a null From to prevent
# malicious signatures header fields (From and/or others) between the signer
# and the verifier. From is oversigned by default in the Debian pacakge
# because it is often the identity key used by reputation systems and thus
# somewhat security sensitive.
OversignHeaders From
LogWhy Yes
TemporaryDirectory /var/tmp
Save and close, and then update the permissions for that file. We’ll also be setting up directories for OpenDKIM.
$ sudo chmod u=rw,go=r /etc/opendkim.conf
$ sudo mkdir /etc/opendkim
$ sudo mkdir /etc/opendkim/keys
$ sudo chown -R opendkim:opendkim /etc/opendkim
$ sudo chmod go-rw /etc/opendkim/keys
$ sudo vim /etc/opendkim/signing.table
That last command will open up a file for editing, where we’ll define the domains we’re signing for. Set the contents to something like the following, replacing with the domains you’re setting up for:
*@mousepawgames.net mousepawgamesnet._domainkey.mousepawgames.net
*@mousepawgames.com mousepawgamescom._domainkey.mousepawgames.com
*@mousepawmedia.com mousepawmediacom._domainkey.mousepawmedia.com
*@indeliblebluepen.com indeliblebluepencom._domainkey.indeliblebluepen.com
Save and close, and then open the key table file.
$ sudo vim /etc/opendkim/key.table
Set the contents to something like the following, with the short keys from the earlier file on the left. Also, be sure to change the date to the current four-digit year and two-digit month:
mousepawgamesnet._domainkey.mousepawgames.net mousepawgames.net:201705:/etc/opendkim/keys/mousepawgamesnet.private
mousepawgamescom._domainkey.mousepawgames.com mousepawgames.com:201705:/etc/opendkim/keys/mousepawgamescom.private
mousepawmediacom._domainkey.mousepawmedia.com mousepawmedia.com:201705:/etc/opendkim/keys/mousepawmediacom.private
indeliblebluepencom._domainkey.indeliblebluepen.com indeliblebluepen.com:201705:/etc/opendkim/keys/indeliblebluepencom.private
Save and close, and then open the trusted hosts configuration file.
$ sudo vim /etc/opendkim/trusted.hosts
Set the contents of that file to:
127.0.0.1
::1
localhost
delavega
delavega.mousepawgames.net
mousepawgames.net
mousepawgames.com
mousepawmedia.com
indeliblebluepen.com
Save and close, and then double-check the permissions on OpenDKIM’s directories.
$ sudo chown -R opendkim:opendkim /etc/opendkim
$ sudo chmod -R go-rwx /etc/opendkim/keys
Now we can generate our keys and set their permissions. Since we need to regenerate this regularly, and there is a LOT involved, I wrote up a handy script.
$ sudo vim /opt/scripts/root_scripts/dkim_manage
Get the code from the dkim_manage Github.
Save and close, and set the proper permissions.
$ sudo chmod +x /opt/scripts/root_scripts/renewdkim
Before we can run the script, we also need to set up the configuration file
it uses. Note that I’m creating this at the path specified at the top of
script above (near the # CHANGE THIS
comment.)
$ sudo vim /opt/scripts/root_scripts/domains.txt
Set the contents of that file to:
mousepawgames.net
mousepawgames.com
mousepawmedia.com
indeliblebluepen.com
Save and close. Now we can use the script to generate the keys.
$ sudo /opt/scripts/root_scripts/renewdkim -g
Now we need to configure our DNS to use these keys. It can be a little tricky to get the entries correct, so I set up the script from earlier to also display what we need.
$ sudo /opt/scripts/root_scripts/renewdkim -d
Copy and paste each of the keys (starting with v=DKIM1
to the end of
the string) into a new TXT record for each DNS. The record name should
be YYYYMM._domainkey
(i.e. 201705._domainkey
).
Once you have these in place, wait a bit for them to propegate, and then test the keys.
$ sudo /opt/scripts/root_scripts/renewdkim -t
If ALL your keys have passed, we are ready to move them into place.
$ sudo /opt/scripts/root_scripts/renewdkim -m
That last command will also restart OpenDKIM and Postfix automatically.
OpenDKIM and Postfix¶
Once OpenDKIM is set up, we need to configure Postfix to use it.
$ sudo mkdir -p /var/run/opendkim
$ sudo chown opendkim:postfix /var/run/opendkim
$ sudo vim /etc/default/opendkim
Make sure the uncommented line matches:
SOCKET="inet:8891@localhost"
Save and close the file, and then edit the configuration for Postfix.
sudo vim /etc/postfix/main.cf
Add the following just below the smtpd_recipient_restrictions
section:
# Milter configuration
# OpenDKIM
milter_default_action = accept
# Postfix ≥ 2.6 milter_protocol = 6, Postfix ≤ 2.5 milter_protocol = 2
milter_protocol = 6
smtpd_milters = inet:localhost:8891
non_smtpd_milters = inet:localhost:8891
# FOLLOWING https://www.linode.com/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8
Save and close, and then restart OpenDKIM and Postfix. These need to be restarted separately, so OpenDKIM sets up the proper socket for Postfix.
$ sudo systemctl restart opendkim
$ sudo systemctl restart postfix
To test it out, send an email to check-auth@verifier.port25.com
. The
report should return DKIM check: pass
.
Note
Special thanks for SCHAPiE for fixing this for us!
DMARC and ADSP¶
After all that, this one is nice and simple. Just add a new TXT record to
each domain’s DNS. Set the Name to _dmarc
, and Value to
v=DMARC1;p=quarantine;sp=quarantine;adkim=r;aspf=r
.
ADSP is more-or-less a moot point - it’s actually deprecated. Still,
setting it is super easy, and it doesn’t hurt anything, so it’s not bad
to offer ultra-legacy support. Once again, add a new TXT record to
each domain’s DNS. The Name is _adsp._domainkey
, and the Value is
dkim=all
.
Mail Filtering¶
Setup¶
We’ll start by installing the packages we need.
$ sudo apt install amavisd-new spamassassin clamav-daemon postfix-policyd-spf-python pyzor razor arj cabextract cpio nomarch pax rar unrar unzip zip
Amavis (amavisd-new
) is the program responsible for the actual filtering,
but it needs to be connected to ClamAV (for virus checking).
$ sudo adduser clamav amavis
$ sudo adduser amavis clamav
Make sure you allow ClamAV to work with Amavis.
$ sudo vim /etc/clamav/clamd.conf
SOUCE: How to fix amvavis reporting “permission denied” for clamav (AskUbuntu)
Change the following line:
AllowSupplementaryGroups true
And then restart ClamAV.
$ sudo systemctl restart clamav-daemon
Now we need to edit SpamAssassin’s configuration.
$ sudo vim /etc/default/spamassassin
Change the following lines:
ENABLED=1
CRON=1
Save and close, and then we’ll update SpamAssassin’s definitions and start the daemon.
$ sudo sa-update
$ sudo systemctl start spamassassin
Save and close.
Next, we’ll make a copy of the default configuration file and edit that.
$ sudo cp /etc/spamassassin/local.cf /etc/spamassassin/local.cf.orig
$ sudo vim /etc/spamassassin/local.cf
Find and uncomment the following lines:
required_score 5.0
use_bayes 1
bayes_auto_learn 1
bayes_ignore_header X-Bogosity
bayes_ignore_header X-Spam-Flag
bayes_ignore_header X-Spam-Status
Note
This is enabling the Bayes system for SpamAssassin. You will need to regularly train this system.
Save and close.
Now we connect Amavis to ClamAV and SpamAssassin.
$ sudo vim /etc/amavis/conf.d/15-content_filter_mode
Change the file so it matches the following, simply by uncommenting the lines for the anti-virus and spam checking modes:
use strict;
# You can modify this file to re-enable SPAM checking through spamassassin
# and to re-enable antivirus checking.
#
# Default antivirus checking mode
# Please note, that anti-virus checking is DISABLED by
# default.
# If You wish to enable it, please uncomment the following lines:
@bypass_virus_checks_maps = (
\%bypass_virus_checks, \@bypass_virus_checks_acl, \$bypass_virus_checks_re);
#
# Default SPAM checking mode
# Please note, that anti-spam checking is DISABLED by
# default.
# If You wish to enable it, please uncomment the following lines:
@bypass_spam_checks_maps = (
\%bypass_spam_checks, \@bypass_spam_checks_acl, \$bypass_spam_checks_re);
1; # ensure a defined return
Save and close, and then run…
$ sudo vim /etc/amavis/conf.d/20-debian_defaults
We want spam messages to be discarded instead of bounced, so we need to edit that setting here:
$final_spam_destiny = D_DISCARD;
Also edit the following lines so all mail is given info headers, and to control when the spam filters kick it to varying degrees.
$sa_spam_subject_tag = ''; # shut off header rewriting, we'll Junk-bin it instead.
$sa_tag_level_deflt = -999; # add spam info headers if at, or above that level
$sa_tag2_level_deflt = 5.0; # add 'spam detected' headers at that level
$sa_kill_level_deflt = 12; # triggers spam evasive actions
$sa_dsn_cutoff_level = 10; # spam level beyond which a DSN is not sent
Save and close.
We also need to modify the hostname and domains Amavis works with.
$ sudo vim /etc/amavis/conf.d/50-user
Change or add the following lines:
$myhostname = 'delavega.mousepawgames.net';
@local_domains_acl = ( "mousepawgames.net", "mousepawgames.com", "mousepawmedia.com", "indeliblebluepen.com" );
Save and close.
We’ll also want to whitelist our own domains, and a few others, given that the incoming message has the proper DKIM signature. Add the following items to the whitelist:
'mousepawgames.com' => 'WHITELIST',
'mousepawgames.net' => 'WHITELIST',
'mousepawmedia.com' => 'WHITELIST',
'indeliblebluepen.com' => 'WHITELIST',
'ewu.edu' => 'WHITELIST',
'whitworth.edu' => 'WHITELIST',
'gonzaga.edu' => 'WHITELIST',
Save and close, and then restart Amavis.
$ sudo systemctl restart amavis
Postfix Integration¶
Run the following…
$ sudo postconf -e 'content_filter = smtp-amavis:[127.0.0.1]:10024'
$ sudo vim /etc/postfix/master.cf
Add the following to the end of the file:
smtp-amavis unix - - - - 2 smtp
-o smtp_data_done_timeout=1200
-o smtp_send_xforward_command=yes
-o disable_dns_lookups=yes
-o max_use=20
127.0.0.1:10025 inet n - - - - smtpd
-o content_filter=
-o local_recipient_maps=
-o relay_recipient_maps=
-o smtpd_restriction_classes=
-o smtpd_delay_reject=no
-o smtpd_client_restrictions=permit_mynetworks,reject
-o smtpd_helo_restrictions=
-o smtpd_sender_restrictions=
-o smtpd_recipient_restrictions=permit_mynetworks,reject
-o smtpd_data_restrictions=reject_unauth_pipelining
-o smtpd_end_of_data_restrictions=
-o mynetworks=127.0.0.0/8
-o smtpd_error_sleep_time=0
-o smtpd_soft_error_limit=1001
-o smtpd_hard_error_limit=1000
-o smtpd_client_connection_count_limit=0
-o smtpd_client_connection_rate_limit=0
-o receive_override_options=no_header_body_checks,no_unknown_recipient_checks,no_milters
Also add the following just below the pickup
line:
-o content_filter=
-o receive_override_options=no_header_body_checks
Save and close, and then restart Postfix.
$ sudo systemctl restart postfix
Ensure Amavis is running correctly with…
$ telnet localhost 10024
The output should be:
Trying ::1...
Connected to localhost.
Escape character is '^]'.
220 [::1] ESMTP amavisd-new service ready
Press Ctrl-] and Enter to exit the telnet session, and then type ‘quit’ and press Enter.
To test everything out, send a message to your email server, and check it for the spam and virus scan headers.
Note
mailbox folders must be recursively set as owner vmail:vmail
, with
recursively-applied permissions 700
and g+s
.
Dovecot Sieve¶
To automatically place spam messages into Junk, we need to configure a Dovecot sieve.
$ sudo apt install dovecot-sieve
$ sudo vim /etc/dovecot/conf.d/90-sieve.conf
Edit that file to comment out the line:
#sieve = file:~/sieve;active=~/.dovecot.sieve
Save and close, and then run…
$ sudo vim /etc/dovecot/conf.d/90-plugin.conf
Add the following to that file:
plugin {
sieve = /etc/dovecot/sieve/default.sieve
}
Save and close, and run…
$ sudo vim /etc/dovecot/conf.d/15-lda.conf
Edit the following section so it incorporates the following:
protocol lda {
mail_plugins = $mail_plugins sieve
}
Save and close, and then…
$ sudo vim /etc/dovecot/conf.d/20-lmtp.conf
As before, edit the following section so it incorporates the following:
protocol lmtp {
mail_plugins = $mail_plugins sieve
}
Now we can set up the sieve itself.
$ sudo mkdir /etc/dovecot/sieve/
$ sudo vim /etc/dovecot/sieve/default.sieve
Set the contents of that new file to:
require "fileinto";
if header :contains "X-Spam-Flag" "YES" {
fileinto "Junk";
}
Save and close, and run…
$ sudo chown vmail:vmail /etc/dovecot/sieve/ -R
$ sudo systemctl restart postfix
$ sudo systemctl restart dovecot
$ sudo systemctl restart spamassassin
$ sudo systemctl restart amavis
As always, test to make sure normal mail still gets through.
Training SpamAssassin¶
We want SpamAssassin to automatically train itself based on the Inbox, Junk, and Archive folders.
Note
This requires all users to monitor their own mailboxes, to ensure that Junk is filled only with spam, and none slips past in the Inbox.
Edit the root crontab…
$ sudo crontab -e
Add the following lines. Note that we are only searching mailboxes belonging
to mousepawmedia.com
(with many domains), and indeliblebluepen.com
.
The mousepawgames.com
addresses are forwarded to mousepawmedia.com
,
so we don’t want to unnecessarily duplicate work or scan now-unused mailboxes.
00 8 * * * /usr/bin/sa-learn --spam /var/mail/vhosts/mousepawmedia.com/*/.Junk/cur
15 8 * * * /usr/bin/sa-learn --ham /var/mail/vhosts/mousepawmedia.com/*/cur
30 8 * * * /usr/bin/sa-learn --ham /var/mail/vhosts/mousepawmedia.com/*/.Archive*/cur
45 8 * * * /usr/bin/sa-learn --spam /var/mail/vhosts/indeliblebluepen.com/*/.Junk/cur
50 8 * * * /usr/bin/sa-learn --ham /var/mail/vhosts/indeliblebluepen.com/*/cur
55 8 * * * /usr/bin/sa-learn --ham /var/mail/vhosts/indeliblebluepen.com/*/.Archive*/cur
Blacklists¶
Sometimes a spam filter just isn’t enough. When we’re regularly getting spam from a particular email address or domain name, we can blacklist it entirely.
$ sudo apt vim /etc/postfix/main.cf
Change the following section to match what is shown here:
smtpd_recipient_restrictions =
check_sender_access hash:/etc/postfix/sender_checks,
permit_sasl_authenticated,
permit_mynetworks,
reject_unauth_destination,
check_policy_service unix:private/policyd-spf
Save and close. Now we create the blacklist file.
$ sudo vim /etc/postfix/sender_checks
We format the blacklist like this:
# Restricts sender addresses this system accepts in MAIL FROM commands.
guerrillamail.com REJECT Just a test
.guerrillamail.com REJECT
periscopedata.com REJECT
.periscopedata.com REJECT
nimblechapps.co.uk REJECT
.nimblechapps.co.uk REJECT
nimblechaps@gmail.com REJECT
Note that we are blocking email from the domain on the first of each pair, and blocking email from all subdomains on that domain on the second of each pair.
Sometimes we also need to block a specific email address, such as on the last line of our example. (We obviously don’t want to block all of Gmail!)
After each domain or email address, we include the argument REJECT
,
optionally followed by a comment or description thereof.
Note
The first pair is only on this list for testing purposes. Be sure to unblock guerrillamail.com when we’re done!
Save and close the file, and run…
$ sudo postmap /etc/postfix/sender_checks
$ sudo systemctl reload postfix
This will load the blacklist in. Now, to test it, we can go to
guerrillamail.com
and use their free service to send an email
to our mail server. If it arrives, we made a mistake somewhere.
Otherwise, if the email doesn’t arrive, our blacklist works. We can unblock that test domain…
$ sudo vim /etc/postfix/sender_checks
Change that file to:
# Restricts sender addresses this system accepts in MAIL FROM commands.
#guerrillamail.com REJECT Just a test
#.guerrillamail.com REJECT
periscopedata.com REJECT
.periscopedata.com REJECT
nimblechapps.co.uk REJECT
.nimblechapps.co.uk REJECT
nimblechaps@gmail.com REJECT
Note that we commented out the guerrillamail.com lines, in case we need them for testing again. However, you can absolutely remove those lines instead.
Save and close, and then run…
$ sudo postmap /etc/postfix/sender_checks
$ sudo systemctl reload postfix
Send one more test email from guerrillamail.com
to make sure
non-blacklisted email addresses are not blocked.
If that works, all is humming along as it should!
SOURCE: Blacklist and Whitelist with Postfix (linuxlasse.net)
Mail Clients¶
We’ll be installing the web client Roundcube.
We start with the dependencies, including the latest version of Composer:
$ sudo apt install php-cli php-xml php-mbstring php-intl php-imagick php-zip php-pear zip unzip git
$ cd /tmp
$ curl -sS https://getcomposer.org/installer -o composer-setup.php
$ HASH=`curl -sS https://composer.github.io/installer.sig`
$ php -r "if (hash_file('SHA384', 'composer-setup.php') === '$HASH') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
You should see “Installer verified”. If so, we can install.
$ sudo php composer-setup.php --install-dir=/usr/local/bin --filename=composer
$ composer
Composer should show its help info.
We also need to enable some PHP extensions:
$ sudo nano /etc/php/7.0/apache2/php.ini
Uncomment the following lines:
extension=php_mbstring.dll
extension=php_xmlrpc.dll
Add the following uncommented lines after the commented line shown here:
;extension=php_xsl.dll
extension=dom.so
extension=imagick.so
Uncomment and/or update the following lines as seen here:
date.timezone = "America/Los_Angeles"
upload_max_filesize = 12M
post_max_size = 18M
mbstring.func_overload = 0
Save and close.
Now we can download the latest version of Roundcube. Go to the Roundcube download page, find the latest Stable version, and right-click Download next to Complete. Copy the link address.
Use that URL (and the accompanying version) in place of the URL and version in the commands below:
$ cd /tmp
$ wget https://github.com/roundcube/roundcubemail/releases/download/1.4.11/roundcubemail-1.4.11-complete.tar.gz
$ tar -xvzf roundcubemail-1.4.11-complete.tar.gz
$ sudo mv roundcubemail-1.4.11 /opt/roundcube
$ sudo chown -R www-data:www-data /opt/roundcube
$ sudo chmod 775 /opt/roundcube/temp/ /opt/roundcube/logs/
$ sudo vim /etc/apache2/sites-available/roundcube.conf
Set the contents of that file to:
<IfModule mod_ssl.c>
<VirtualHost *:443>
ServerName webmail.mousepawmedia.com
ServerAdmin webmaster@mousepawmedia.com
DocumentRoot /opt/roundcube
ErrorLog ${APACHE_LOG_DIR}/roundcube-error.log
CustomLog ${APACHE_LOG_DIR}/roundcube-access.log combined
<Directory /opt/roundcube>
Options -Indexes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
</Directory>
# prevent iframing this site
Header always append X-Frame-Options SAMEORIGIN
# SSL
SSLEngine on
SSLCertificateFile /etc/apache2/certs/fullchain.pem
SSLCertificateKeyFile /etc/apache2/certs/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
<FilesMatch "\.(cgi|shtml|phtml|php)$">
SSLOptions +StdEnvVars
</FilesMatch>
<Directory /usr/lib/cgi-bin>
SSLOptions +StdEnvVars
</Directory>
</VirtualHost>
</IfModule>
<VirtualHost *:80>
ServerName webmail.mousepawmedia.com
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI}
</VirtualHost>
Save and close.
Now we need to set up the database.
$ mysql -u root -p
In the MySQL terminal, run the following, changing password
to a new,
secure password.
CREATE DATABASE roundcubemail /*!40101 CHARACTER SET utf8 COLLATE utf8_general_ci */;
CREATE USER 'roundcube'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON roundcubemail.* to 'roundcube'@'localhost';
FLUSH PRIVILEGES;
EXIT;
Then we load the default database in with the terminal command…
$ mysql -u roundcube -p roundcubemail < /opt/roundcube/SQL/mysql.initial.sql
Enter the password from the previous step when prompted.
Now we can configure. Go to https://webmail.<serveraddress>/installer/
.
Ensure everything is marked OK
(except the databases not being used;
only MySQL
needs to be OK
there.) Click NEXT.
Under General Configuration, fill out the settings as you like.
Under Logging & Debugging. If you’re not sure about something, use the default.
For Database setup, the defaults are probably correct, but be sure to enter the database password!
For IMAP Settings, we use the following:
default_host:
ssl://mail.mousepawmedia.com
default_port:
993
auto_create_user: Yes
sent_mbox:
Sent
trash_mbox:
Trash
drafts_mbox:
Drafts
junk_mbox:
Junk
For SMTP Settings, we use the following:
smtp_server:
tls://mail.mousepawmedia.com
smtp_port:
587
smtp_user:
%u
smtp_pass:
%p
Use the current IMAP username and password for SMTP authentication: Yes
smtp_log: Yes
Set the options under Display settings & user prefs as desired. We have also chosen to enable the following plugins on our system:
archive
attachment_reminder
emoticons
filesystem_attachments
help
hide_blockquote
jqueryui
markasjunk
new_user_dialog
newmail_notifier
zipdownload
Finally, click CREATE CONFIG, and then CONTINUE.
On the next screen, test both IMAP and SMTP to ensure they work.
If they do, close out of the webpage. In the terminal, run the following:
$ sudo rm -rf /opt/roundcube/installer
$ sudo vim /etc/apache2/sites-available/roundcube.conf
Change DocumentRoot
to /opt/roundcube/public_html
, then save and close.
This will improve security for Roundcube.
Finally, run:
$ sudo systemctl restart apache2
Now you can go to https://webmail.<serveraddress>
and log in using your
full email and your password.
That’s it! You’re now good to go.
SOURCE: Roundcube Installation (roundcube Wiki)
SOURCE: How to Install Your Own Webmail Client with Roundcube on Ubuntu 16.04 (DigitalOcean)
AWStats¶
Start by installing the AWStats software.
$ sudo apt install awstats
Now we need to create configuration files for each of our domains. Repeat the following steps for each, replacing “example.com” with the domain name.
$ sudo cp /etc/awstats/awstats.conf /etc/awstats/awstats.example.com.conf
$ sudo vim /etc/awstats/awstats.example.com.conf
Change the following:
SiteDomain="example.com"
HostAliases="www.example.com"
Save and close, and generate the stats.
$ sudo /usr/lib/cgi-bin/awstats.pl -config=example.com -update
Now edit the corresponding Apache2 site configuration for each site
(i.e. example.com.conf
), adding the following at the bottom of the
VirtualHost
entry.
Alias /awstatsclasses "/usr/share/awstats/lib/"
Alias /awstats-icon "/usr/share/awstats/icon/"
Alias /awstatscss "/usr/share/doc/awstats/examples/css"
ScriptAlias /awstats/ /usr/lib/cgi-bin/
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Be sure that, if you have X-Frame-Options
set, it is set as…
Header set X-Frame-Options SAMEORIGIN
If it is set to DENY, the AWStats pages won’t work.
After repeating those steps for each site, make sure the CGI module is loaded, and then reload Apache2.
$ sudo a2enmod cgi
$ sudo systemctl reload apache2
Last, we’ll set up cron to reload these stats every hour.
$ sudo crontab -e
Add the following line, one for each domain, replacing example.com
as
appropriate.
0 */3 * * * /usr/lib/cgi-bin/awstats.pl -config=example.com -update
That will refresh the stats every three hours. Save and close.
Now you can view the AWStats for any of the configured sites by going to
https://example.com/awstats/awstats.pl
. These are not secure by any means,
so if you don’t want just anyone viewing these, you’ll need to set up HTTP
authentication or some such.
LimeSurvey¶
Let’s install LimeSurvey.
Install the dependencies.
$ sudo apt install php-gd php-ldap php-zip php-imap
Get the download link from LimeSurvey, which we’ll use in the next step.
Download and unzip the latest version to our /opt
directory. Be sure
to replace the URL and filename with the one appropriate for your download.
We’ll also set our permissions here.
Note
If you’re paranoid like me about unzipping directly in an important
directory like /opt/html
, you can always unzip it in another folder and
move the limesurvey
folder to /opt/html
.
$ cd /opt/html
$ sudo wget https://www.limesurvey.org/stable-release?download=2095:limesurvey2672%20170719zip
$ sudo unzip limesurvey2.67.2+170719.zip
$ sudo chown -R webster:www-data /opt/html/limesurvey
$ sudo chmod -R 755 /opt/html/limesurvey
$ sudo chmod -R 775 /opt/html/limesurvey/tmp
$ sudo chmod -R 775 /opt/html/limesurvey/upload
$ sudo chmod -R 775 /opt/html/limesurvey/application/config
We gave the webserver group write permissions to three specific directories, and read-only access to the rest of the folders for LimeSurvey.
Apache2¶
Let’s set up the subsite for Limesurvey.
$ sudo vim /etc/apache2/sites-available/survey.conf
Set the contents of that file to the following:
<IfModule mod_ssl.c>
<VirtualHost *:443>
ServerName survey.mousepawmedia.com
ServerAlias survey.mousepawgames.com
ServerAdmin webmaster@mousepawmedia.com
DocumentRoot /opt/html/limesurvey
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
<Directory /opt/html/limesurvey>
Options -MultiViews -Indexes
AllowOverride All
</Directory>
# prevent iframing this site
#Header set X-Frame-Options DENY
# SSL
SSLEngine on
SSLCertificateFile /etc/apache2/certs/fullchain.pem
SSLCertificateKeyFile /etc/apache2/certs/privkey.pem
Include /etc/letsencrypt/options-ssl-apache.conf
<FilesMatch "\.(cgi|shtml|phtml|php)$">
SSLOptions +StdEnvVars
</FilesMatch>
<Directory /usr/lib/cgi-bin>
SSLOptions +StdEnvVars
</Directory>
</VirtualHost>
</IfModule>
<VirtualHost *:80>
ServerName survey.mousepawmedia.com
ServerAlias survey.mousepawgames.com
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^ https://survey.mousepawmedia.com%{REQUEST_URI}
</VirtualHost>
Save and close. Now we can enable the site.
$ sudo a2ensite survey
$ sudo systemctl restart apache2
Be sure to expand the certificate to include this.
Database¶
Using PHPMyAdmin, set up a limesurvey
user and database. The user must have
the following permissions:
SELECT, CREATE, INSERT, UPDATE, DELETE, ALTER, DROP, INDEX
.
Setup¶
Go to https://survey.mousepawmedia.com
and follow the setup wizard.