web
web copied to clipboard
The easiest way to create web applications with Go
Any plans to add gzip compression?
When running behind a proxy, it would be nice if there was a way to have the framework pick the correct client IP Address. Also, @hoisie, do you think the...
would be nice has this feature, some application need to check cookie every request, or doing some global settings.
Lately I've been finding use cases for a middleware system. For example - generic cache-control handling and authentication It will most likely follow the wsgi format -- something very simple...
Hello, How add default header?
I'm not sure if this is a me, web.go, or go issue... but I was doing a little light load testing and discovered that under a little load I started...
It would be nice to have websocket handler support: ``` web.Websocket("/test", websocketTest) ``` It's something I like in [Mojolicious](http://mojolicious.org/) and would like to see in web.go.
When a request has Accept-Encoding: compress, gzip, it should encode the content as gzip Also, add a Vary: Accept-Encoding to the response header
It seems like web.go automatically processes the body of all POSTs as a form, which unfortunately leaves the body empty. For PUT (and other, I assume) requests it leaves the...
Many shared hosting services (ie. dreamhost for me) don't allow you to specify an external fcgi by address:port and instead using fd 0 as the listen socket for the FastCGI....