Changes between Version 18 and Version 19 of PuffinServer


Ignore:
Timestamp:
02/01/13 09:55:19 (4 years ago)
Author:
chris
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PuffinServer

    v18 v19  
    77It was agreed to call this server {{{puffin}}} at the ttech meeting on 22nd November 2012, see ticket:463. 
    88 
    9 The install and initial configuration of this server is being tracked on ticket:466. 
     9The install and initial configuration of this server is being tracked on ticket:466, see also the other #migrationtickets 
    1010 
    11 A script to copy files from NewLiveServer to puffin was created on ticket:472. 
     11== Migration Tickets == 
     12 
     13Tickets created during the migration of the http://www.transitionnetwork.org/ site from NewLiveServer to this server: 
     14 
     15* ticket:472 Script to copy files from NewLiveServer to puffin  
     16* ticket:479 Transfer live transitionnetwork.org site to Puffin  
     17* ticket:480 Transfer news.transitionnetwork.org to puffin  
     18* ticket:483 Nginx 502 Bad Gateway Errors with BOA  
     19* ticket:487 robots.txt files for development sites  
    1220 
    1321== Console Access == 
     
    112120alias lx='ls -lXB --color=auto' 
    113121}}} 
     122 
     123=== Vim config === 
     124 
     125To make vim the default editor for root the following was added to {{{/root/.bashrc}}}: 
     126 
     127{{{ 
     128export EDITOR="vim" 
     129}}} 
     130 
     131To make config files nicer to read in vim the following was added to {{{/root/.vimrc}}}: 
     132 
     133{{{ 
     134syntax on 
     135}}} 
     136 
     137And a {{{/root/.vim/filetype.vim}}} files was craeted with the following in it: 
     138 
     139{{{ 
     140au BufRead,BufNewFile /etc/mysql/my.cnf, set ft=mycnf 
     141autocmd BufRead,BufNewFile /etc/php5/fpm/* set syntax=dosini 
     142autocmd BufRead,BufNewFile /opt/local/etc/php53-fpm.conf set syntax=dosini 
     143}}} 
     144 
     145And a {{{/root/.vim/syntax/}}} directory was created and {{{mycnf.vim}}} was created in it by downloading it from http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/packages/vim-syntax-mycnf/