#Ubuntu - Adding CA Certs
To add new Certificate Authority (CA) certs:
-
Create a directory (ie extra) in the ca-certs to hold the new certs
sudo mkdir /usr/share/ca-certificates/extra -
Copy or move the certs into the new directory
#Ubuntu - Adding CA Certs
To add new Certificate Authority (CA) certs:
Create a directory (ie extra) in the ca-certs to hold the new certs
sudo mkdir /usr/share/ca-certificates/extra
Copy or move the certs into the new directory
| #!/bin/bash | |
| # works with a file called VERSION in the current directory, | |
| # the contents of which should be a semantic version number | |
| # such as "1.2.3" | |
| # this script will display the current version, automatically | |
| # suggest a "minor" version update, and ask for input to use | |
| # the suggestion, or a newly entered value. |
| #!/usr/bin/env python | |
| """ | |
| Very simple HTTP server in python (Updated for Python 3.7) | |
| Usage: | |
| ./dummy-web-server.py -h | |
| ./dummy-web-server.py -l localhost -p 8000 | |
| Send a GET request: |