This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
upstream discourse { | |
#fail_timeout is optional; I throw it in to see errors quickly | |
server 127.0.0.1:4578 fail_timeout=5; | |
} | |
# configure the virtual host | |
server { | |
# replace with your domain name | |
server_name discourse.example.com; | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install soft | |
$soft = ['wget', 'curl', 'zsh', 'cowsay', 'fortune', 'strace', | |
'sudo', 'mc', 'make', 'gcc', 'tree', 'ntpdate', 'dh-make', | |
'debhelper', 'devscripts', 'fakeroot', 'openjdk-7-jdk', 'git', | |
'storm', 'vim', 'md5deep', 'dpkg', 'debconf', 'lintian'] | |
apt::source { 'edisoft': | |
location => 'http://10.20.20.75:8080/static/edisoft', | |
release => 'wheezy', | |
repos => 'main', | |
key => 'D5EFD011', |