Git Product home page Git Product logo

Comments (4)

elithrar avatar elithrar commented on July 28, 2024

Did you check the reply to your post on Google Groups? https://groups.google.com/d/topic/golang-nuts/a7-6d1-d11o

from goji.

easyrider avatar easyrider commented on July 28, 2024

yes, I have checked it but it doesn't work for me

from goji.

zenazn avatar zenazn commented on July 28, 2024

Err, this seems to be working for me?

package main

import (
    "net/http"

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

func main() {
    mux1 := web.New()
    mux1.Get("/", func(w http.ResponseWriter, r *http.Request) {
        w.Write([]byte("domain one mux\n"))
    })
    http.Handle("domainone.com/", mux1)

    mux2 := web.New()
    mux2.Get("/", func(w http.ResponseWriter, r *http.Request) {
        w.Write([]byte("domain two mux\n"))
    })
    http.Handle("domaintwo.com/", mux2)

    goji.Get("/", func(w http.ResponseWriter, r *http.Request) {
        w.Write([]byte("main mux\n"))
    })
    goji.Serve()
}
$ curl -H "Host: domainone.com" localhost:8000
domain one mux
$ curl -H "Host: domaintwo.com" localhost:8000
domain two mux
$ curl  localhost:8000
main mux

from goji.

easyrider avatar easyrider commented on July 28, 2024

Ok, it works. Thank you guys.

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.