webfingerd

simple webfinger daemon in node.js

Downloads
2
Stars
4
Committers
1

webfingerd

simple webfinger daemon in node.js

deployment

copy config file

$ cp config.example.json config.json

edit if needed

$ cp test/fixtures/[email protected] test/fixtures/[email protected]

you need to configure nginx, if you don't use any other /.well-known services this would work (use port you set in config.json!):

upstream webfingerd {
        server 0.0.0.0:8888
}

location /.well-known {
        proxy_pass http://webfingerd;
}

development

$ cp config.example.json config.json

edit config.json if needed

$ npm install
$ grunt