Changes between Version 18 and Version 19 of PuffinServer
- Timestamp:
- 02/01/13 09:55:19 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PuffinServer
v18 v19 7 7 It was agreed to call this server {{{puffin}}} at the ttech meeting on 22nd November 2012, see ticket:463. 8 8 9 The install and initial configuration of this server is being tracked on ticket:466 .9 The install and initial configuration of this server is being tracked on ticket:466, see also the other #migrationtickets 10 10 11 A script to copy files from NewLiveServer to puffin was created on ticket:472. 11 == Migration Tickets == 12 13 Tickets 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 12 20 13 21 == Console Access == … … 112 120 alias lx='ls -lXB --color=auto' 113 121 }}} 122 123 === Vim config === 124 125 To make vim the default editor for root the following was added to {{{/root/.bashrc}}}: 126 127 {{{ 128 export EDITOR="vim" 129 }}} 130 131 To make config files nicer to read in vim the following was added to {{{/root/.vimrc}}}: 132 133 {{{ 134 syntax on 135 }}} 136 137 And a {{{/root/.vim/filetype.vim}}} files was craeted with the following in it: 138 139 {{{ 140 au BufRead,BufNewFile /etc/mysql/my.cnf, set ft=mycnf 141 autocmd BufRead,BufNewFile /etc/php5/fpm/* set syntax=dosini 142 autocmd BufRead,BufNewFile /opt/local/etc/php53-fpm.conf set syntax=dosini 143 }}} 144 145 And 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/