unofficial mirror of guile-user@gnu.org 
 help / color / mirror / Atom feed
* Hosting Guile web applications
@ 2020-01-18 15:28 Jérémy Korwin-Zmijowski
  2020-01-18 19:24 ` Nala Ginrut
  2020-01-19  9:08 ` Ricardo Wurmus
  0 siblings, 2 replies; 8+ messages in thread
From: Jérémy Korwin-Zmijowski @ 2020-01-18 15:28 UTC (permalink / raw)
  To: Guile User

Hello Guilers !! Hope you are doing well.

I would like to know where/how do you host your web applications written in Guile.

I would like to start hacking on the web but kind of lack of experience in these field...

Thank you in advance !
Jeko


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Hosting Guile web applications
  2020-01-18 15:28 Hosting Guile web applications Jérémy Korwin-Zmijowski
@ 2020-01-18 19:24 ` Nala Ginrut
  2020-01-18 19:26   ` Nala Ginrut
  2020-01-19  9:08 ` Ricardo Wurmus
  1 sibling, 1 reply; 8+ messages in thread
From: Nala Ginrut @ 2020-01-18 19:24 UTC (permalink / raw)
  To: Jérémy Korwin-Zmijowski; +Cc: Guile User

Hi Jeremy!
You make take a look at https://artanis.dev

Best regards.


On Sat, Jan 18, 2020 at 11:29 PM Jérémy Korwin-Zmijowski <
jeremy@korwin-zmijowski.fr> wrote:

> Hello Guilers !! Hope you are doing well.
>
> I would like to know where/how do you host your web applications written
> in Guile.
>
> I would like to start hacking on the web but kind of lack of experience in
> these field...
>
> Thank you in advance !
> Jeko
>


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Hosting Guile web applications
  2020-01-18 19:24 ` Nala Ginrut
@ 2020-01-18 19:26   ` Nala Ginrut
  2020-01-19  9:03     ` Ricardo Wurmus
  0 siblings, 1 reply; 8+ messages in thread
From: Nala Ginrut @ 2020-01-18 19:26 UTC (permalink / raw)
  To: Jérémy Korwin-Zmijowski; +Cc: Guile User

And you may install it with Docker that may save your lot of time:
https://nalaginrut.com/archives/2019/09/18/install%20gnu%20artanis%20with%20docker


On Sun, Jan 19, 2020 at 3:24 AM Nala Ginrut <nalaginrut@gmail.com> wrote:

> Hi Jeremy!
> You make take a look at https://artanis.dev
>
> Best regards.
>
>
> On Sat, Jan 18, 2020 at 11:29 PM Jérémy Korwin-Zmijowski <
> jeremy@korwin-zmijowski.fr> wrote:
>
>> Hello Guilers !! Hope you are doing well.
>>
>> I would like to know where/how do you host your web applications written
>> in Guile.
>>
>> I would like to start hacking on the web but kind of lack of experience
>> in these field...
>>
>> Thank you in advance !
>> Jeko
>>
>


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Hosting Guile web applications
  2020-01-18 19:26   ` Nala Ginrut
@ 2020-01-19  9:03     ` Ricardo Wurmus
  2020-01-19 13:59       ` Jeremy Korwin-Zmijowski
  2020-01-19 15:30       ` Nala Ginrut
  0 siblings, 2 replies; 8+ messages in thread
From: Ricardo Wurmus @ 2020-01-19  9:03 UTC (permalink / raw)
  To: Nala Ginrut; +Cc: guile-user


Nala Ginrut <nalaginrut@gmail.com> writes:

> And you may install it with Docker that may save your lot of time:
> https://nalaginrut.com/archives/2019/09/18/install%20gnu%20artanis%20with%20docker

Or with Guix:

  guix install artanis

-- 
Ricardo




^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Hosting Guile web applications
  2020-01-18 15:28 Hosting Guile web applications Jérémy Korwin-Zmijowski
  2020-01-18 19:24 ` Nala Ginrut
@ 2020-01-19  9:08 ` Ricardo Wurmus
  2020-01-19 11:01   ` Jeremy Korwin-Zmijowski
  1 sibling, 1 reply; 8+ messages in thread
From: Ricardo Wurmus @ 2020-01-19  9:08 UTC (permalink / raw)
  To: Jérémy Korwin-Zmijowski; +Cc: guile-user


Jérémy Korwin-Zmijowski <jeremy@korwin-zmijowski.fr> 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’t need much.  For development you don’t need to
even make the application available to the internet – 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




^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Hosting Guile web applications
  2020-01-19  9:08 ` Ricardo Wurmus
@ 2020-01-19 11:01   ` Jeremy Korwin-Zmijowski
  0 siblings, 0 replies; 8+ messages in thread
From: Jeremy Korwin-Zmijowski @ 2020-01-19 11:01 UTC (permalink / raw)
  To: rekado, nalaginrut; +Cc: guile-user

Le dimanche 19 janvier 2020 à 10:08 +0100, Ricardo Wurmus a écrit :
> Jérémy Korwin-Zmijowski <jeremy@korwin-zmijowski.fr> 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’t need much.  For development you don’t need
> to
> even make the application available to the internet – 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
> 

Hey! Thank you both for your answers!

I will start by learning about Artanis and spread Guile all over the
web! 

Then, to make it available to the internet (I have no self host
solution right now), do you know a hosting provider with Guile pre-
installed ? Or maybe I could install Guix on some vps kind of stuff.

I found a blog gcbenison.wordpress.com where I read how one did. Was
inspiring.

Cheers




^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Hosting Guile web applications
  2020-01-19  9:03     ` Ricardo Wurmus
@ 2020-01-19 13:59       ` Jeremy Korwin-Zmijowski
  2020-01-19 15:30       ` Nala Ginrut
  1 sibling, 0 replies; 8+ messages in thread
From: Jeremy Korwin-Zmijowski @ 2020-01-19 13:59 UTC (permalink / raw)
  To: Ricardo Wurmus, Nala Ginrut; +Cc: guile-user

Le dimanche 19 janvier 2020 à 10:03 +0100, Ricardo Wurmus a écrit :
> Nala Ginrut <nalaginrut@gmail.com> writes:
> 
> > And you may install it with Docker that may save your lot of time:
> > 
https://nalaginrut.com/archives/2019/09/18/install%20gnu%20artanis%20with%20docker
> 
> Or with Guix:
> 
>   guix install artanis
> 

It sounds like I should continue this discussion to the guix channel
haha!




^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: Hosting Guile web applications
  2020-01-19  9:03     ` Ricardo Wurmus
  2020-01-19 13:59       ` Jeremy Korwin-Zmijowski
@ 2020-01-19 15:30       ` Nala Ginrut
  1 sibling, 0 replies; 8+ messages in thread
From: Nala Ginrut @ 2020-01-19 15:30 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: Guile User

Oh, I forget to promote Guix which should be the preferred way for
installing other useful Guile packages. :-)

On Sun, Jan 19, 2020, 17:03 Ricardo Wurmus <rekado@elephly.net> wrote:

>
> Nala Ginrut <nalaginrut@gmail.com> writes:
>
> > And you may install it with Docker that may save your lot of time:
> >
> https://nalaginrut.com/archives/2019/09/18/install%20gnu%20artanis%20with%20docker
>
> Or with Guix:
>
>   guix install artanis
>
> --
> Ricardo
>
>


^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2020-01-19 15:30 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-18 15:28 Hosting Guile web applications Jérémy Korwin-Zmijowski
2020-01-18 19:24 ` Nala Ginrut
2020-01-18 19:26   ` Nala Ginrut
2020-01-19  9:03     ` Ricardo Wurmus
2020-01-19 13:59       ` Jeremy Korwin-Zmijowski
2020-01-19 15:30       ` Nala Ginrut
2020-01-19  9:08 ` Ricardo Wurmus
2020-01-19 11:01   ` Jeremy Korwin-Zmijowski

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).