Tymon Tobolski

Results 130 comments of Tymon Tobolski

Just for reference - it is better to force TLS v1.2 with `.., [ssl: [{:versions, [:'tlsv1.2']}]]`

@adrianotadao See https://github.com/teamon/tesla/issues/35. Basically, when using verify_none you give up host verification which is kind of against the purpose of using SSL at all. The issue here is that there...

It probably could be something simple like this: ```ex defmodule VerkBasicAuth do @behaviour Plug def init(_opts) do if Application.get_env(:verk_web, :authorization) do BasicAuth.init(use_config: {:verk_web, :authorization}) else :no_auth end end def call(conn,...

Ahh, actually this won't work, as stated in Plug docs `init` might be called during compilation.

Wrong. @jphastings this might help https://gist.github.com/dd7ffd2dbde27bc32446, but prepare for long journey. Btw, dokuen leaves running processes when scaling down

Uh, sure, https://gist.github.com/dd7ffd2dbde27bc32446

See https://github.com/peterkeen/dokuen/issues/18

Hi guys, any progress with socket.io support? :)

I think I can find some time to help with this next week. Stupid question: does any of you guys is somehow going to be at rupy.eu conference? ;)

Welcome back guys. During the Rupy conference a new thing came out - SockJS ( https://github.com/sockjs ). This is kind of socket.io, but doesn't require flash and does not implement...