Michael Lazar

Results 126 comments of Michael Lazar

This is a capability that I always wanted for gopher, and I would love to add support for it in jetforce if possible. I think the ``CompositeApplication`` would likely be...

Yea I think it's probably security best practice to not pass the whole environment from the server process to the child process, because the server process environment may contain sensitive...

All of the TLS configuration happens in this class: https://github.com/michael-lazar/jetforce/blob/efe41ece85d48bae928492c3ded50a190fca7dd6/jetforce/tls.py#L84 Currently, the class is initialized with a single cert/key pair. It generates a single ``SSL.Context`` object which is cached inside...

> Oh okay. Looks like there's a lot to learn here ha! Yea.. I still have a lot to learn about it too 😄 > I thought there would be...

Here's what jetforce/twisted is doing under the hood with the sockets: - `host=0.0.0.0` - Bind to `0.0.0.0` with `AF_INET` - `host=::` - Bind to `::` with `AF_INET6` - `host=""` -...

Hey, thanks for the suggestions. It sounds like you are going down a path of something like an Apache [.htaccess](https://httpd.apache.org/docs/2.4/howto/htaccess.html) file. I don't think there is anything fundamentally wrong with...

> I think the usecase of what I proposed is very simple and somewhat common, when people move files they will often want to provide redirects. I'll take your word...

Hey, thanks for the bug report! I've been following along with the cryptography news and I was wondering if anyone was going to run into this. I don't think there's...

Welcome, Can you help me understand what you are trying to accomplish here? Jetforce has admittedly basic support for CGI using the ``/cgi-bin`` directory pattern that can result in ugly...

Thanks for the explanation! That makes a lot more sense now. The index file is supposed to be only a filename and not a full directory path, so the way...