node-http-server

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 6  →  ?path2? @ 7
/config.js.dist
@@ -0,0 +1,26 @@
module.exports = {
net: {
address: 'localhost',
port: 8070,
},
log: {
file: 'logs/server.log',
},
auth: {
paths: [
'/admin/'
],
realm: 'Wizardry and Steamworks',
digest: 'auth/htpasswd',
},
site: {
index: 'index.html',
name: 'Wizardry and Steamworks',
},
ssl: {
enable: true,
privateKeySize: 1024,
address: 'localhost',
port: 8080
}
}