3a0f551e33
Adding simple Traefik example. Signed-off-by: lfache <61111030+lfache@users.noreply.github.com>
31 lines
464 B
Go
31 lines
464 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"net/http"
|
|
)
|
|
|
|
func handler(w http.ResponseWriter, r *http.Request) {
|
|
fmt.Println(r.URL.RawQuery)
|
|
fmt.Fprintf(w, `
|
|
## .
|
|
## ## ## ==
|
|
## ## ## ## ## ===
|
|
/"""""""""""""""""\___/ ===
|
|
{ / ===-
|
|
\______ O __/
|
|
\ \ __/
|
|
\____\_______/
|
|
|
|
|
|
Hello from Docker!
|
|
|
|
`)
|
|
}
|
|
|
|
func main() {
|
|
http.HandleFunc("/", handler)
|
|
log.Fatal(http.ListenAndServe(":80", nil))
|
|
}
|