mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
modified gitignore to get new config.conf
This commit is contained in:
24
---config.conf
Normal file
24
---config.conf
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
|
||||||
|
const port = 8000;
|
||||||
|
const whitelist = ['127.0.0.1']; //Example for add several IP in whitelist: ['127.0.0.1', '192.168.0.10']
|
||||||
|
const whitelistMode = true; //Disabling enabling the ip whitelist mode. true/false
|
||||||
|
const basicAuthMode = false; //Toggle basic authentication for endpoints.
|
||||||
|
const basicAuthUser = {username: "user", password: "password"}; //Login credentials when basicAuthMode is true.
|
||||||
|
const disableThumbnails = false; //Disables the generation of thumbnails, opting to use the raw images instead
|
||||||
|
const autorun = true; //Autorun in the browser. true/false
|
||||||
|
const enableExtensions = true; //Enables support for TavernAI-extras project
|
||||||
|
const listen = true; // If true, Can be access from other device or PC. otherwise can be access only from hosting machine.
|
||||||
|
const allowKeysExposure = false; // If true, private API keys could be fetched to the frontend.
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
port,
|
||||||
|
whitelist,
|
||||||
|
whitelistMode,
|
||||||
|
basicAuthMode,
|
||||||
|
basicAuthUser,
|
||||||
|
autorun,
|
||||||
|
enableExtensions,
|
||||||
|
listen,
|
||||||
|
disableThumbnails,
|
||||||
|
allowKeysExposure,
|
||||||
|
};
|
Reference in New Issue
Block a user