diff --git a/exemples/test.toml b/exemples/test.toml index 8c0d802..a513196 100644 --- a/exemples/test.toml +++ b/exemples/test.toml @@ -2,7 +2,7 @@ log_file = "test.log" [server] server_names = { "localhost", "2B5.local" } -host = "0.0.0.0" +host = "localhost" port = 8080 [server.error_pages] diff --git a/src/server/Server.cpp b/src/server/Server.cpp index 976b9b6..0dd8220 100644 --- a/src/server/Server.cpp +++ b/src/server/Server.cpp @@ -6,7 +6,7 @@ /* By: adjoly +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2025/04/11 16:11:40 by adjoly #+# #+# */ -/* Updated: 2025/04/22 16:34:40 by adjoly ### ########.fr */ +/* Updated: 2025/04/22 16:37:31 by adjoly ### ########.fr */ /* */ /* ************************************************************************** */ @@ -149,7 +149,7 @@ Server::Server(config::Config *conf) : _conf(conf) { try { _setup(); _run(); - } catch (std::exception &e) { + } catch (std::runtime_error &e) { _log->error(e.what()); } }