With HTTP everything is visible when traveling on the Internet. By generating an SSL certificate and configuring your webserver you can force browsers to use HTTPS. Here is how to proceed:
# 1. Install letsencrypt
sudo pip install letsencrypt
If you are accustomed (like me) to fire Ctrl+R
before running any new command, here is a tip to keep your Shell history clean and more search-friendly.
The best way to do this is to prevent some commands (e.g. those with passwords inlined) to be logged, but also to skip saving duplicated commands.
This is all controlled by the environment variable HISTCONTROL
. It can take 3 values:
ignorespace
: lines which begin with a space character are not savedignoredups
: lines matching the previous history entry are not savedignoreboth
: is shorthand for ignorespace and ignoredups#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# Author: Ficapy | |
from __future__ import division, print_function | |
import sys | |
import re | |
import urllib | |
import sqlite3 | |
import tempfile |
##Install AWS CLI Tools##
cd ~/.aws
edit or create new file named config
paste the following contents inside.
Save the file as "config"