Re: [go-nuts] Deploying go https servers

2017-03-09 Thread Manlio Perillo
Il giorno venerdì 10 marzo 2017 05:43:44 UTC+1, Dragos Harabor ha scritto: > > Does this help? > https://blog.gopheracademy.com/advent-2016/exposing-go-on-the-internet/ > > Nginx will do much more things for you, in addition of providing additional "security": 1) Serve custom pages in case of Go

Re: [go-nuts] Deploying go https servers

2017-03-09 Thread Sankar P
Wow. This is a fantastic post. Thanks for sharing. I was expecting something like this only. 2017-03-10 10:13 GMT+05:30 Dragos Harabor : > Does this help? > https://blog.gopheracademy.com/advent-2016/exposing-go-on-the-internet/ > > On Wednesday, March 8, 2017 at 7:49:37 PM UTC-8, Sankar wrote: >

Re: [go-nuts] Deploying go https servers

2017-03-09 Thread Dragos Harabor
Does this help? https://blog.gopheracademy.com/advent-2016/exposing-go-on-the-internet/ On Wednesday, March 8, 2017 at 7:49:37 PM UTC-8, Sankar wrote: > > I am looking more for a checklist of things to do, rather than a set of > tools. > > 2017-03-09 0:38 GMT+05:30 Shawn Milochik > >: > >> That

Re: [go-nuts] Deploying go https servers

2017-03-08 Thread Sankar P
I am looking more for a checklist of things to do, rather than a set of tools. 2017-03-09 0:38 GMT+05:30 Shawn Milochik : > That sounds a good use-case for Ansible to me. It's pretty easy to use and > get started. > > -- > You received this message because you are subscribed to a topic in the > G

Re: [go-nuts] Deploying go https servers

2017-03-08 Thread Shawn Milochik
That sounds a good use-case for Ansible to me. It's pretty easy to use and get started. -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@go

[go-nuts] Deploying go https servers

2017-03-08 Thread Sankar
Hi I have written a golang REST API server and a react webapp that talks to this REST server. There is a mysql server that the golang server talks to. There is an init script with a bunch of SQL statements to create a few tables and indexes. Everything works fine in my local machine. I have bo