mirror of
https://github.com/WorldEditAxe/eaglerproxy.git
synced 2024-12-03 22:14:12 -08:00
make config more descriptive for certain setting entries
This commit is contained in:
parent
8bd1ed9e8d
commit
71f43f4597
|
@ -9,6 +9,9 @@ export const config: Config = {
|
||||||
bindHost: "0.0.0.0",
|
bindHost: "0.0.0.0",
|
||||||
bindPort: 8080,
|
bindPort: 8080,
|
||||||
maxConcurrentClients: 20,
|
maxConcurrentClients: 20,
|
||||||
|
// set this to false if you are unable to install sharp due to either the use of a platform that does not support native modules
|
||||||
|
// or if you are unable to install the required dependencies. this will cause the proxy to use jimp instead of sharp, which may
|
||||||
|
// degrade your proxy's performance.
|
||||||
useNatives: true,
|
useNatives: true,
|
||||||
skinServer: {
|
skinServer: {
|
||||||
skinUrlWhitelist: undefined,
|
skinUrlWhitelist: undefined,
|
||||||
|
@ -20,12 +23,12 @@ export const config: Config = {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
motd: true
|
motd: true
|
||||||
? "FORWARD"
|
? "FORWARD" // "FORWARD" regularly polls the server for the MOTD
|
||||||
: {
|
: {
|
||||||
iconURL: "motd.png",
|
iconURL: "motd.png", // must be a valid file path
|
||||||
l1: "yes",
|
l1: "yes",
|
||||||
l2: "no",
|
l2: "no",
|
||||||
},
|
}, // providing an object as such will allow you to supply your own MOTD
|
||||||
ratelimits: {
|
ratelimits: {
|
||||||
lockout: 10,
|
lockout: 10,
|
||||||
limits: {
|
limits: {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user