Added a already exists url option in Creds.priv.cs

This commit is contained in:
Mike Nolan 2024-10-19 03:46:48 -05:00
parent 7611dee5d2
commit 55f62811c7
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ To Configure you must add a file called Creds.priv.cs with the following content
static string _username = "YOUR_SSH_USERNAME"; static string _username = "YOUR_SSH_USERNAME";
static string _password = "YOUR_SSH_PASSWORD"; static string _password = "YOUR_SSH_PASSWORD";
static string _dir = "YOUR_SSH_PATH"; static string _dir = "YOUR_SSH_PATH";
static int _port = 22; static int _port = 22; //if ssh is on different port change it here
static string _alreadyExists=""; //must be http(s) url such as https://tytdarchive.site.tesses.net/have.php?v= that the response must return "true" if it already exists or "false" if not static string _alreadyExists=""; //must be http(s) url such as https://tytdarchive.site.tesses.net/have.php?v= that the response must return "true" if it already exists or "false" if not
} }