From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Vivien Kraus Newsgroups: gmane.lisp.guile.user Subject: Re: Fibers web server: use multiple server sockets Date: Wed, 02 Nov 2022 19:27:04 +0100 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="20717"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Evolution 3.46.0 Cc: 'guile-user' To: dsmich@roadrunner.com Original-X-From: guile-user-bounces+guile-user=m.gmane-mx.org@gnu.org Wed Nov 02 19:28:18 2022 Return-path: Envelope-to: guile-user@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1oqITI-00056K-5i for guile-user@m.gmane-mx.org; Wed, 02 Nov 2022 19:28:16 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1oqISc-0007Hr-BQ; Wed, 02 Nov 2022 14:27:34 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oqISQ-0007Ge-U2 for guile-user@gnu.org; Wed, 02 Nov 2022 14:27:23 -0400 Original-Received: from planete-kraus.eu ([2a00:5881:4008:2810::309]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_CHACHA20_POLY1305:256) (Exim 4.90_1) (envelope-from ) id 1oqISL-0001kW-Ce for guile-user@gnu.org; Wed, 02 Nov 2022 14:27:18 -0400 Original-Received: from planete-kraus.eu (localhost.lan [127.0.0.1]) by planete-kraus.eu (OpenSMTPD) with ESMTP id 7e6b7cad; Wed, 2 Nov 2022 18:27:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=planete-kraus.eu; h= message-id:subject:from:to:cc:date:in-reply-to:references :content-type:content-transfer-encoding:mime-version; s=dkim; bh=6EAQlnaIu7zVA8wbun0g86JiNmw=; b=lNllxOYsebkDj/Us7TyDPEqYw0vx 5VnXirZehU4sRj75EUYeg/NA0Ewys99TOyLUkeRol1bNNERrVzolWY9lpsdCyz4g 0pgx151mKuxFQxIQdqY9AulEpMpheuCkM7EtRJZrGlAtKXPMJRPL3Ee5n8z0bFRp bxwkUBdsgUdHED8= Original-Received: by planete-kraus.eu (OpenSMTPD) with ESMTPSA id 2d784a87 (TLSv1.3:AEAD-CHACHA20-POLY1305-SHA256:256:NO); Wed, 2 Nov 2022 18:27:06 +0000 (UTC) In-Reply-To: Received-SPF: pass client-ip=2a00:5881:4008:2810::309; envelope-from=vivien@planete-kraus.eu; helo=planete-kraus.eu X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: "guile-user" Errors-To: guile-user-bounces+guile-user=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.lisp.guile.user:18686 Archived-At: Hello Dale, There are 2 init systems that matter: shepherd (because it=E2=80=99s guile = and used in guix) and systemd (because nearly everyone uses it). Le mercredi 02 novembre 2022 =C3=A0 18:15 +0000, dsmich@roadrunner.com a =C3=A9crit=C2=A0: > How about not starting the web server until network interfaces are > fully up? As far as I understand, there is no such thing with shepherd. As for systemd, this [1] is an interesting read and it shows that it=E2=80=99s up = to me to write my server such that it can adapt to dynamic configuration changes. [1] https://systemd.io/NETWORK_ONLINE/ Vivien