Changes between Version 15 and Version 16 of PuffinServer
- Timestamp:
- 01/23/13 22:56:58 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PuffinServer
v15 v16 82 82 83 83 The only changes made to the default nginx configuration was to move the key and cert it was using out of the way and symlink to the *.transitionnetwork.org ones, see ticket:466#comment:25. 84 85 == Handy commands == 86 87 There are some Bash aliases to quickly get around the system added by JK... 88 89 For Root: 90 {{{ 91 alias cdtn='cd /data/disk/tn/' # cd to tn directory 92 alias totn='su -s /bin/bash tn' # log into the tn user 93 94 # show file usages 95 alias duf='du -sk * | sort -n | perl -ne '\''($s,$f)=split(m{\t});for (qw(K M G)) {if($s<1024) {printf("%.1f",$s);print "$_\t$f"; last};$s=$s/1024}'\' 96 }}}