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
#!/usr/bin/env bash | |
apt-get update | |
# Install Node.js and other JS tools | |
apt-get install -y curl | |
curl -sL https://deb.nodesource.com/setup_6.x | bash - | |
apt-get install -y nodejs |
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
user www-data; | |
worker_processes 1; | |
events { | |
worker_connections 128; | |
} | |
http { | |
error_log logs/error.log warn; | |
access_log logs/access.log compression; |