The next generation of the Teknik Services. Written in ASP.NET.
https://www.teknik.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
672 B
20 lines
672 B
namespace Teknik.Utilities |
|
{ |
|
public static class Constants |
|
{ |
|
public const string SERVERUSER = "Server Admin"; |
|
public const string TRUSTEDDEVICECOOKIE = "TeknikTrustedDevice"; |
|
public const string LOGO_PATH = "images/logo-black.svg"; |
|
public const string FAVICON_PATH = "images/favicon.ico"; |
|
public const string ROBOTS_PATH = "~/App_Data/robots.txt"; |
|
|
|
public const string LOG_FILE_NAME_PREFIX = "Teknik"; |
|
public const string LOG_FILE_EXT = ".log"; |
|
|
|
public const string PERF_KEY = "Stopwatch"; |
|
|
|
public const string NONCE_KEY = "Nonce"; |
|
|
|
public const string NullIpAddress = "::1"; |
|
} |
|
}
|
|
|