Top "Gorilla" questions

Gorilla is a web toolkit for the Go programming language.

Logging http responses (in addition to requests)

I am using Go and the Gorilla web toolkit's mux and handler packages to build a complex application, part of …

go gorilla
I need to connect to an existing websocket server using go lang

Theres a websocket running in my localhost on ws://localhost:8080/ws I need go lang code that can create a …

go websocket gorilla
Go, sudo, and apache port 80

I am using gorilla/mux package in golang, but there are some problems. The first is I have no permissions …

linux apache go gorilla
Testing HTTP routes in Golang

I am using Gorilla mux and the net/http package to create some routes as follows package routes //some imports //…

unit-testing go gorilla servemux
Sessions variables in golang not saved while using gorilla sessions

Session Variables are not maintained across request while using gorilla sessions web toolkit. When I start the server and type …

session go gorilla
Go Gorilla Websockets ~ On ping/pong fail (user disconnct) call function?

I'm writing a chat program with Golang and Gorilla's Websocket toolkit. I'm wondering if there is a way to run …

go websocket ping gorilla
how to redirect http to https in Gorilla Mux?

I am developing a golang application and I am using Gorilla Mux and i want to redirect HTTP requests to …

go gorilla
Golang sharing configurations between packages

So I just started learning the Go programming language and have spent hours on end looking at examples, references and …

go gorilla
Gorilla WebSocket disconnects after a minute

I'm using Go (Golang) 1.4.2 with Gorilla WebSockets behind an nginx 1.4.6 reverse proxy. My WebSockets are disconnecting after about a minute …

nginx go websocket gorilla
Can't use go tool pprof with an existing server

I have an existing http server which I would like to profile. I have included _ "net/http/pprof"to my …

go gorilla pprof