12 lines
307 B
Plaintext
12 lines
307 B
Plaintext
module config;
|
|
|
|
//you should be able to find these fairly easily
|
|
enum keyString = "encryption key";
|
|
enum cipherName = "cipher name";
|
|
|
|
enum serverHost = "API server hostname";
|
|
enum serverPort = 80;
|
|
|
|
//edit this if you want to run the proxy as a normal user and use a reverse proxy
|
|
enum proxyPortNumber = 80;
|