Jason Ish

Results 102 comments of Jason Ish

> You've got proxy_pass set to localhost @ 8000 in nginx, but what if this is sitting behind an external load balancer and needs to reverse proxy to another load...

You should be able to do what I've seen done in AWS before, but it really doesn't have anything to do with Suricata or Amsteram. First, I doubt Azure is...

Unfortunately I don't have a trivial client example, and am currently not actively using libevent so probably won't be doing one any time soon.

I found myself wanting this as well. In my case I was wrapping my errors with an additional message. My http service has a single point of logging errors, and...

> A wrap without a message is called WithStack. Is that useful for your use case? Yes, sorry for the noise, I should have dug a bit deeper first. Just...

No really yet. You can use the `-k` command line option to disable certificate validation. Or if you try the latest development build, you can add your CA to your...

Is the database included, from the tree_magic readme: > By default, tree_magic_mini will attempt to load the shared MIME info database from the standard locations at runtime. Embedding the database...

Just some followup... In the current version of this PR I verified that the embedded/bundled magic database is not being used. Instead if checks the following paths: ``` "/usr/share/mime/magic", "/usr/local/share/mime/magic",...

I think there is some tricky licensing details with mime databases here. https://github.com/zRedShift/mimemagic/ is a Go project for mime-sniffing. That project parsed the raw XML data from `shared-mime-info` and created...

> Should we make the build only if an enable-flag is passed ? This would avoid the GPL issue. I'm not sure I like the idea of something I see...