app.disable(name)
Sets the Boolean setting name
to false
, where name
is one of the properties from the app settings table. Calling app.set('foo', false)
for a Boolean property is the same as calling app.disable('foo')
.
For example:
app.disable('trust proxy'); app.get('trust proxy'); // => false
Please login to continue.