From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.ciao.gmane.io!not-for-mail From: Ricardo Wurmus Newsgroups: gmane.lisp.guile.user Subject: Re: Hosting Guile web applications Date: Sun, 19 Jan 2020 10:08:42 +0100 Message-ID: <87pnffx17p.fsf@elephly.net> References: <230A2EF2-6B77-4B66-BAC4-66370DB1B86C@korwin-zmijowski.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Injection-Info: ciao.gmane.io; posting-host="ciao.gmane.io:159.69.161.202"; logging-data="26887"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: mu4e 1.2.0; emacs 26.3 Cc: guile-user@gnu.org To: =?utf-8?B?SsOpcsOpbXk=?= Korwin-Zmijowski Original-X-From: guile-user-bounces+guile-user=m.gmane-mx.org@gnu.org Sun Jan 19 10:09:08 2020 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 1it6Zv-0006xT-Hf for guile-user@m.gmane-mx.org; Sun, 19 Jan 2020 10:09:07 +0100 Original-Received: from localhost ([::1]:48622 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1it6Zu-0004K5-G3 for guile-user@m.gmane-mx.org; Sun, 19 Jan 2020 04:09:06 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:45959) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1it6Zk-0004Jz-Pd for guile-user@gnu.org; Sun, 19 Jan 2020 04:08:57 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1it6Zj-0000yX-O2 for guile-user@gnu.org; Sun, 19 Jan 2020 04:08:56 -0500 Original-Received: from sender4-of-o51.zoho.com ([136.143.188.51]:21105) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1it6Zj-0000yI-GB for guile-user@gnu.org; Sun, 19 Jan 2020 04:08:55 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1579424928; s=zoho; d=elephly.net; i=rekado@elephly.net; h=References:From:To:Cc:Subject:In-reply-to:Date:Message-ID:MIME-Version:Content-Type:Content-Transfer-Encoding; bh=J5tJzZOfhEw+SWiyfH32baKK9d4LK0oyZqIyQnWVszA=; b=c3n5R4o0oTcegeA0UqzKFFNeo89kXDG/TjYefeNki7jVlw7+93YqVyJgRYS99q7b eKTj5FBgF1Z4s0pPjJ1xAii/wrC9WkENYHEJxSGgqfluOz7AC/jcmjOqdYcQTLf0fIB NQYJg7Z0rqbVm9/Yq9UPqyeGmod6tsXXqiN6REEI= Original-Received: from localhost (p4FD5A2FA.dip0.t-ipconnect.de [79.213.162.250]) by mx.zohomail.com with SMTPS id 1579424926077319.2127668865644; Sun, 19 Jan 2020 01:08:46 -0800 (PST) In-reply-to: <230A2EF2-6B77-4B66-BAC4-66370DB1B86C@korwin-zmijowski.fr> X-URL: https://elephly.net X-PGP-Key: https://elephly.net/rekado.pubkey X-PGP-Fingerprint: BCA6 89B6 3655 3801 C3C6 2150 197A 5888 235F ACAC X-ZohoMailClient: External X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 136.143.188.51 X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-user-bounces+guile-user=m.gmane-mx.org@gnu.org Original-Sender: "guile-user" Xref: news.gmane.io gmane.lisp.guile.user:16077 Archived-At: J=C3=A9r=C3=A9my Korwin-Zmijowski writes: > I would like to know where/how do you host your web applications written = in Guile. For all my web applications I have them listen on a port on localhost only. I use nginx to listen for requests from the outside and proxy them to the local application. To get started you don=E2=80=99t need much. For development you don=E2=80= =99t need to even make the application available to the internet =E2=80=93 you can simply start it on your development machine and connect with a browser to localhost on the port you picked. Publication requires the usual things for convenience: a domain name, a public IP address associated with the name, and a web server that listens for HTTP requests sent to that IP address on port 443 (for HTTPS) or 80 (for plain HTTP). -- Ricardo