From 6a78dcbb2872b81cf5893e9986bf30f196c0bd58 Mon Sep 17 00:00:00 2001 From: John W Kerns Date: Sat, 2 Sep 2017 00:06:31 -0700 Subject: [PATCH] Updated README --- README.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4a49d07..04119b7 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,11 @@ To enable the use of this service as a simple API, the response to queries is fo ----------------------------------------- ### INSTALL PROCESS ### -Change Linux SSH Port to TCP222 and reboot +If you would rather set up your own private instance of CheckMyIP, then you can follow the below instructions to set it up for yourself. + + + +Change Linux SSH Port to TCP 222 and reboot ``` sudo sed -i --follow-symlinks 's/#Port 22/Port 222/g' /etc/ssh/sshd_config @@ -145,8 +149,8 @@ from checkmyip import CheckMyIP_Client client = CheckMyIP_Client() ipdict = client.get() -print("My IP is %s" % ipdict["ip"]) -print("I used port number %s" % ipdict["port"]) +print("\nMy IP is %s\n" % ipdict["ip"]) +print("\nI used port number %s\n" % ipdict["port"]) ``` -----------------------------------------