Create a public and private key used for SSH authentication
ssh-keygen
This will create two files in your home directory ~/.ssh/:
id_rsaid_rsa.pub
Copy contents of id_rsa.pub into ~/.ssh/authorized_keys on the remote server
| traefik Traefik is a modern HTTP reverse proxy and load balancer made to deploy microservices with ease. | |
| Complete documentation is available at https://traefik.io | |
| Usage: traefik [command] [flags] [arguments] | |
| Use "traefik [command] --help" for help on any command. | |
| Commands: | |
| healthcheck Calls Traefik /ping endpoint (disabled by default) to check the health of Traefik. | |
| version Shows the current Traefik version. |
A little info about your project and/ or overview that explains what the project is about.
A short description of the motivation behind the creation and maintenance of the project. This should explain why the project exists.
Build status of continus integration i.e. travis, appveyor etc. Ex. -
| // search http status codes | |
| // return the full status code from a partial match | |
| function full_status_code($status) | |
| { | |
| // create array of status codes | |
| // match status codes to their text | |
| $statusCodes = [ |
| // get user input when in php-cli | |
| // emulate python's input() function | |
| function input($msg) | |
| { | |
| // show the input message | |
| echo $msg . ': '; |