9 lines
143 B
JavaScript
9 lines
143 B
JavaScript
|
// webserver configuration
|
||
|
|
||
|
// listen port
|
||
|
exports.port = 80;
|
||
|
|
||
|
// uid and gid to drop root priv.
|
||
|
exports.uid = 'light';
|
||
|
exports.gid = 'users';
|