Eric Junker

Results 28 comments of Eric Junker

+1 It would be really nice to have the latest 2.2.x available via Bower

I tried the traefik quickstart and everything worked. In the quickstart they run commands like: `curl -H Host:whoami.docker.localhost http://127.0.0.1` which work because it isn't depending on any DNS resolution since...

I'm on macOS 10.13.3 I don't think there is such a thing as "auto dns" with traefik. Traefik is a proxy that can understand HTTP headers like `Host: awesome.localhost` to...

Ah, I was using Firefox which doesn't support `*.localhost` automatically. You might want to update the instructions to mention that you have to use Chrome if you are on macOS....

I did get dnsmasq to work but I added an entry to docker-compose.yml to run dnsmasq in a container rather than installing it with homebrew. See my previous comment where...

Another option would be to do what Hotel does and run a web proxy. See https://github.com/typicode/hotel/blob/master/docs/README.md Here is the template for their PAC (proxy auto config) file: https://github.com/typicode/hotel/blob/master/src/daemon/views/proxy-pac.pug

The `Dusterio\PlainSqs\Sqs\Queue::pop()` method has code where it determines which Job class to use based on the config which maps queues to handlers. I think that could be extracted into a...

I think this issue can be closed since the latest version does support Guzzle 7

That would work but it is a bit verbose. As a user I would expect a literal string to assign a literal string. It would be a breaking change but...

That would work. If callables were disabled I still like the idea of having a helper method that you could pass a string and it would return a closure that...