├── .bundle └── config ├── .foundryrc ├── .github └── FUNDING.yml ├── .gitignore ├── .rubocop.yml ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── Gemfile.lock ├── README.md ├── SECURITY.md ├── UNLICENSE ├── bin ├── deploy-twolfson.com.sh └── validate-remote.sh ├── data └── etc │ ├── init.d │ └── supervisord │ ├── nginx │ └── conf.d │ │ ├── drive.twolfson.com.conf │ │ ├── mentor.twolfson.com.conf │ │ ├── twolfsn.com.conf │ │ └── twolfson.com.conf │ ├── ssh │ └── sshd_config │ └── supervisord.conf ├── docs ├── provisioning-a-server.md └── upgrading-nodejs.md ├── release.sh ├── spec └── serverspec │ ├── README.md │ ├── apt.rb │ ├── bash.rb │ ├── nginx.rb │ ├── node.rb │ ├── security.rb │ ├── ssh.rb │ ├── sudo.rb │ ├── supervisor.rb │ ├── system.rb │ ├── users.rb │ └── utils │ └── serverspec.rb └── test.sh /.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twolfson/twolfson.com-scripts/HEAD/.bundle/config -------------------------------------------------------------------------------- /.foundryrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twolfson/twolfson.com-scripts/HEAD/.foundryrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: https://twolfson.com/support-me 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twolfson/twolfson.com-scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twolfson/twolfson.com-scripts/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twolfson/twolfson.com-scripts/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twolfson/twolfson.com-scripts/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twolfson/twolfson.com-scripts/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twolfson/twolfson.com-scripts/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twolfson/twolfson.com-scripts/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twolfson/twolfson.com-scripts/HEAD/SECURITY.md -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twolfson/twolfson.com-scripts/HEAD/UNLICENSE -------------------------------------------------------------------------------- /bin/deploy-twolfson.com.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twolfson/twolfson.com-scripts/HEAD/bin/deploy-twolfson.com.sh -------------------------------------------------------------------------------- /bin/validate-remote.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twolfson/twolfson.com-scripts/HEAD/bin/validate-remote.sh -------------------------------------------------------------------------------- /data/etc/init.d/supervisord: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twolfson/twolfson.com-scripts/HEAD/data/etc/init.d/supervisord -------------------------------------------------------------------------------- /data/etc/nginx/conf.d/drive.twolfson.com.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twolfson/twolfson.com-scripts/HEAD/data/etc/nginx/conf.d/drive.twolfson.com.conf -------------------------------------------------------------------------------- /data/etc/nginx/conf.d/mentor.twolfson.com.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twolfson/twolfson.com-scripts/HEAD/data/etc/nginx/conf.d/mentor.twolfson.com.conf -------------------------------------------------------------------------------- /data/etc/nginx/conf.d/twolfsn.com.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twolfson/twolfson.com-scripts/HEAD/data/etc/nginx/conf.d/twolfsn.com.conf -------------------------------------------------------------------------------- /data/etc/nginx/conf.d/twolfson.com.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twolfson/twolfson.com-scripts/HEAD/data/etc/nginx/conf.d/twolfson.com.conf -------------------------------------------------------------------------------- /data/etc/ssh/sshd_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twolfson/twolfson.com-scripts/HEAD/data/etc/ssh/sshd_config -------------------------------------------------------------------------------- /data/etc/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twolfson/twolfson.com-scripts/HEAD/data/etc/supervisord.conf -------------------------------------------------------------------------------- /docs/provisioning-a-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twolfson/twolfson.com-scripts/HEAD/docs/provisioning-a-server.md -------------------------------------------------------------------------------- /docs/upgrading-nodejs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twolfson/twolfson.com-scripts/HEAD/docs/upgrading-nodejs.md -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twolfson/twolfson.com-scripts/HEAD/release.sh -------------------------------------------------------------------------------- /spec/serverspec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twolfson/twolfson.com-scripts/HEAD/spec/serverspec/README.md -------------------------------------------------------------------------------- /spec/serverspec/apt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twolfson/twolfson.com-scripts/HEAD/spec/serverspec/apt.rb -------------------------------------------------------------------------------- /spec/serverspec/bash.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twolfson/twolfson.com-scripts/HEAD/spec/serverspec/bash.rb -------------------------------------------------------------------------------- /spec/serverspec/nginx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twolfson/twolfson.com-scripts/HEAD/spec/serverspec/nginx.rb -------------------------------------------------------------------------------- /spec/serverspec/node.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twolfson/twolfson.com-scripts/HEAD/spec/serverspec/node.rb -------------------------------------------------------------------------------- /spec/serverspec/security.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twolfson/twolfson.com-scripts/HEAD/spec/serverspec/security.rb -------------------------------------------------------------------------------- /spec/serverspec/ssh.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twolfson/twolfson.com-scripts/HEAD/spec/serverspec/ssh.rb -------------------------------------------------------------------------------- /spec/serverspec/sudo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twolfson/twolfson.com-scripts/HEAD/spec/serverspec/sudo.rb -------------------------------------------------------------------------------- /spec/serverspec/supervisor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twolfson/twolfson.com-scripts/HEAD/spec/serverspec/supervisor.rb -------------------------------------------------------------------------------- /spec/serverspec/system.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twolfson/twolfson.com-scripts/HEAD/spec/serverspec/system.rb -------------------------------------------------------------------------------- /spec/serverspec/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twolfson/twolfson.com-scripts/HEAD/spec/serverspec/users.rb -------------------------------------------------------------------------------- /spec/serverspec/utils/serverspec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twolfson/twolfson.com-scripts/HEAD/spec/serverspec/utils/serverspec.rb -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twolfson/twolfson.com-scripts/HEAD/test.sh --------------------------------------------------------------------------------