Git Product home page Git Product logo

Comments (5)

elithrar avatar elithrar commented on July 28, 2024

Hi,

There's two options:

i.e. (and excuse the formatting, on my phone)

func main() {
r := web.New()
r.Use(middleware.Recovery)
r.Use(middleware.Logger)
r.Get("/", IndexHandler)

graceful.ListenAndServeTLS(":8000", "cert.pem", "key.pem", r)

}

  • Use goji.Serve() and have nginx or Apache do the SSL termination, reverse
    proxying to your Go application. This has the benefit of your Go app not
    needing to run on ports 80/443, which typically require root privileges or
    kernel capabilities.

Let me know if you need anything clarified.

On Thursday, July 3, 2014, godoc [email protected] wrote:

have some code example?


Reply to this email directly or view it on GitHub
#40.

from goji.

xn--jor97jsqo avatar xn--jor97jsqo commented on July 28, 2024

thanks

from goji.

xn--jor97jsqo avatar xn--jor97jsqo commented on July 28, 2024

@elithrar
I write a demo code, but when go run the code, the program exit and have no error report.

package main

import (
    "net/http"
    "fmt"

    "github.com/zenazn/goji/graceful"
    "github.com/zenazn/goji/web"
    "github.com/zenazn/goji/web/middleware"
)

func main() {

    r := web.New()
    r.Use(middleware.Logger)
    r.Use(middleware.Recoverer)

    r.Get("/", IndexHandler)

    graceful.ListenAndServeTLS(":8000", "cert.pem", "key.pem", r)
}

func IndexHandler(w http.ResponseWriter, r *http.Request) {
        fmt.Fprintf(w, "Hello, %s!", "world")
}

from goji.

elithrar avatar elithrar commented on July 28, 2024

Are you providing a certificate and key file?

Wrap graceful.ListenAndServeTLS in a log.Fatal -

log.Fatal(graceful.ListenAndServeTLS)

This should show the error if the server exits prematurely.

On Thursday, July 3, 2014, godoc [email protected] wrote:

@elithrar https://github.com/elithrar

I write a demo code, but when go run the code, the program exit and have
no error report.

package main

import (
"net/http"
"fmt"

"github.com/zenazn/goji/graceful"
"github.com/zenazn/goji/web"
"github.com/zenazn/goji/web/middleware"

)

func main() {

r := web.New()
r.Use(middleware.Logger)
r.Use(middleware.Recoverer)

r.Get("/", IndexHandler)

graceful.ListenAndServeTLS(":8000", "cert.pem", "key.pem", r)

}

func IndexHandler(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "Hello, %s!", "world")
}


Reply to this email directly or view it on GitHub
#40 (comment).

from goji.

defp avatar defp commented on July 28, 2024

@elithrar thanks for you answer, the code is ok, I forget generate certificate file, sorry

from goji.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.