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
#!/bin/sh | |
# | |
# It is written and tested for Ubuntu 16.04 on Binary Lane using a $4/month Linux VPS. | |
# | |
# It does the following: | |
# 1) Updates everything and installs all requirements | |
# 2) Uses Certbot to request a Lets Encrypt Certificate | |
# 3) Builds a HTTPS proxy to use proper certificates | |
# 4) Writes out an automatic renewal cron for Lets Encrypt (as the certs expire every 3 months) | |
# |
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
#!/bin/sh | |
# | |
# It is written and tested for Ubuntu 16.04 on Binary Lane using a $4/month Linux VPS. | |
# | |
# It does the following: | |
# 1) Kills Nginx as DeviceHub does not start it as a service | |
# 2) Uses Certbot to request a Lets Encrypt Certificate | |
# 3) Modifies the Nginx config to disable HTTP access and reference the new certificates | |
# 4) Writes out an automatic renewal cron for Lets Encrypt (as the certs expire every 3 months) | |
# |
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
#!/bin/sh | |
# | |
# This script stands on the shoulders of giants. | |
# | |
# You can always find the most recent version here: https://gist.github.com/hisnameisjimmy/56f9414076ca39a79bfa07eefa89759e | |
# | |
# It is written and tested for Ubuntu 16.04 on Digital Ocean using a 1GB droplet. | |
# Anything less than 1GB of memory may cause issues with anything memory intensive | |
# like imports/exports. | |
# |