Skip to content

Commit

Permalink
server: do not expose port to public by default
Browse files Browse the repository at this point in the history
  • Loading branch information
tsl0922 committed Apr 27, 2023
1 parent e12f321 commit 3920608
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server.c
Expand Up @@ -324,7 +324,7 @@ int main(int argc, char **argv) {
info.max_http_header_data = 65535;

int debug_level = LLL_ERR | LLL_WARN | LLL_NOTICE;
char iface[128] = "";
char iface[128] = "127.0.0.1";
char socket_owner[128] = "";
bool browser = false;
bool ssl = false;
Expand Down

0 comments on commit 3920608

Please sign in to comment.