git ssb

1+

dinoworm ๐Ÿ› / catstack



Tree: d66ba086e84546ccf6c93c61e85bd5ed4601a14e

Files: d66ba086e84546ccf6c93c61e85bd5ed4601a14e / proxy.js

349 bytesRaw
1const config = require('app/config')
2const createServer = require('app/proxy').createServer
3const Url = require('url')
4
5const server = createServer(config)
6
7server.listen(config.proxy.port, function () {
8 console.log(JSON.stringify({
9 name: 'proxy',
10 level: 'info',
11 message: `proxy server listening on port ${config.proxy.port}`
12 }))
13})
14

Built with git-ssb-web