httpd
httpd copied to clipboard
OpenBSD httpd
I want httpd to work like this: - Visit http://example.com/ => use /index.php - Visit http://example.com/foo => foo is not a file or directory => use /index.php - Visit http://example.com/bar...
httpd is almost useless for anything other than static HTML files. Even though you can use it with fastcgi, there is no way to intercept errors and display a custom...
I know the answer about dynamic compression (#21). What about serving precompressed static files like the nginx 's `gzip_static` module (https://nginx.org/en/docs/http/ngx_http_gzip_static_module.html)? Basically, if the client asks for `/styles.css` while indicating...
This may be featuritis but I would like to suggest allowing the following as a global option: directory index index.html, index.php, index.htm.
HTTP 3 has several compelling advantages over HTTP 1.1 and HTTP 2: - HTTP3 runs over QUIC, which natively supports roaming. This is especially useful for mobile clients. - HTTP3...
As the question asks, is there a way to compile this on linux?
Hello, I think some folks might find it useful to be able to block connections based on the source IP address or Reverse DNS (or lackthereof.) I want to be...
I would like to enable logging on httpd, but [according to the CJEU's interpretation of the GDPR](https://www.whitecase.com/publications/alert/court-confirms-ip-addresses-are-personal-data-some-cases), IP addresses are personal data. Therefore, I need some way to disable IP...
Is support for http/2 planned for httpd? The adoption with browsers seem to be rather quick, so there could be a fast transition to leave HTTP/1.1 as legacy soon.
Are there plans to allow server{} blocks to listen (for HTTP) on a UNIX socket rather than a port? If this already exists, the **listen on** directive of the httpd.conf(5)...