Skip to content
This repository has been archived by the owner on Sep 27, 2023. It is now read-only.

Commit

Permalink
bind only to local loopback interface
Browse files Browse the repository at this point in the history
  • Loading branch information
voidlock committed Nov 13, 2014
1 parent f6979fa commit 34daa23
Showing 1 changed file with 15 additions and 12 deletions.
27 changes: 15 additions & 12 deletions sys.config
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
[{kernel, [
{inet_dist_listen_min, 9100},
{inet_dist_listen_max, 9200}
]}
,{lager, [
{crash_log, undefined},
{async_threshold, 100},
{async_threshold_window, 20},
{error_logger_hwm, 500},
{handlers, [{lager_console_backend,
[info, {lager_default_formatter, [message, "\n"]}]}]}
]}
%% -*- mode: erlang -*-
[{kernel,
[{inet_dist_listen_min, 9100},
{inet_dist_listen_max, 9200}
]},
{lager,
[{crash_log, undefined},
{async_threshold, 100},
{async_threshold_window, 20},
{error_logger_hwm, 500},
{handlers, [{lager_console_backend,
[info, {lager_default_formatter, [message, "\n"]}]}]}
]},
{folsom_cowboy,
[{ip, {127,0,0,1}}]}
].

0 comments on commit 34daa23

Please sign in to comment.