mirror of
https://github.com/azures04/crafatar.git
synced 2026-03-22 07:51:17 +01:00
Merge branch 'master' of github.com:crafatar/crafatar
This commit is contained in:
commit
08ef1c1d12
@ -87,7 +87,10 @@ function requestHandler(req, res) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
var boot = module.exports = function () {
|
var boot = module.exports = function () {
|
||||||
http.createServer(requestHandler).listen(process.env.PORT || 3000);
|
var port = process.env.PORT || 3000;
|
||||||
|
var bind_ip = process.env.BIND || "127.0.0.1";
|
||||||
|
console.log("Server running on http://" + bind_ip + ":" + port + "/");
|
||||||
|
http.createServer(requestHandler).listen(port, bind_ip);
|
||||||
};
|
};
|
||||||
|
|
||||||
if (require.main === module) {
|
if (require.main === module) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user