Changes between Version 3 and Version 4 of DevelopmentServer


Ignore:
Timestamp:
07/07/10 13:58:41 (6 years ago)
Author:
chris
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DevelopmentServer

    v3 v4  
    6262== phpMyAdmin == 
    6363 
    64 The phymyadmin debian package was installed and directives from /etc/phpmyadmin/apache.conf and /etc/apache2/sites-available/default-ssl were copied into /etc/apache2/sites-available/phpmyadmin and then the VirtualServer was enabled, a2ensite phpmyadmin and apache restarted. 
     64The phymyadmin debian package was installed and directives from /etc/phpmyadmin/apache.conf and /etc/apache2/sites-available/default-ssl were copied into /etc/apache2/sites-available/phpmyadmin and then the !VirtualServer was enabled, a2ensite phpmyadmin and apache restarted. 
    6565 
    6666phpMyAdmin is available at: https://kiwi.transitionnetwork.org/phpmyadmin/ 
    6767 
     68== MySQL == 
     69 
     70There is a copy of the root passwd for MySQL in /root/. 
     71 
     72The MySQL settings have been tweaked to increase memory usage, see /etc/mysql/my.cnf 
     73 
     74MySQL users and databases were set up using the phpMyAdmin interface. 
     75 
     76== Postfix == 
     77 
     78Postfix has been installed for outgoing SMPT email, the only changes from the default configuration are related to enabling TLS and these changes are in /etc/postfix/main.cf. 
     79 
     80Email to root is forwarded to chris@webarchitects.co.uk via /root/.forward -- if anyone else needs to get a copy of the root emails then please add yourself to this file. 
     81 
     82== Backupninja == 
     83 
     84[https://labs.riseup.net/code/projects/show/backupninja/ Backupninja] has been installed and set up -- it's set to backup files to another server in the same rack. The main configuration file is /etc/backupninja.conf and the files containing the list of things to be backed up are in /etc/backup.d/. 60 days worth of backups are saved. It is set to backup MySQL and the following directories: 
     85{{{ 
     86include = /etc 
     87include = /home 
     88include = /var 
     89include = /home 
     90include = /usr 
     91include = /srv 
     92include = /web 
     93  
     94exclude = /var/run 
     95}}} 
     96 
     97== !DenyHosts == 
     98 
     99To prevent SSH brute force attacks [http://denyhosts.sourceforge.net/ DenyHosts] has been installed -- if you make too many mistakes with your password you will be locked out! To whitelist IP addresses add them to /etc/hosts.allow -- blacklisted IP's are written to /etc/hosts.deny.  
    68100 
    69101