Explore >> Select a destination


You are here

blog.rogs.me
| | eamonnsullivan.co.uk
1.7 parsecs away

Travel
| | One huge and welcome change in the last decade or so for Web development is that secure connections are ubiquitous. Free certificates are available and most hosting providers make it very easy to obtain, use and renew the certificates automatically. This site, for example, runs on Amazon Web Services and enabling https took not much more effort than ticking a few checkboxes.Browsers, like Chrome, Firefox and Safari, have also played their part, by gently steering users toward secure connections, warning about sending sensitive information over plain text and switching to https automatically, when available.
| | www.matthewhoelter.com
0.7 parsecs away

Travel
| | February 19th, 2020 How to configure Rails 6 with force_ssl using Nginx and Let's Encrypt
| | osc.garden
1.4 parsecs away

Travel
| | How to self-host GoatCounter -a lightweight, privacy-friendly web analytics tool- with an nginx reverse proxy and an SSL certificate.
| | blog.chand1012.dev
12.6 parsecs away

Travel
| In this tutorial, we will be setting up a Flask server using Gunicorn and NGINX on Ubuntu 18.04 LTS. Requirements Any system running Ubuntu 18.04 LTS with SSH enabled. An SSH client. Installing After connecting via SSH to your server as root, run the following commands to install the required programs: apt update apt upgrade -y apt install nginx python3 python3-pip python3-venv This will install Python, NGINX, and the virtual environment needed to run the app.