We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
persistent connections
The configuration example regarding persistent connections doesn't really do what is expected.
Users should be using the KeepAlive, KeepAliveTimeout and MaxKeepAliveRequests Apache core directives.
KeepAlive
KeepAliveTimeout
MaxKeepAliveRequests
Also, it is important to note that, even though these directives don't work in the .htaccess file, Apache:
.htaccess
has (should have) KeepAlive On by default
KeepAlive On
provides (should provide) default values for the KeepAliveTimeout and MaxKeepAliveRequests directives
The text was updated successfully, but these errors were encountered:
1cdf6e2
No branches or pull requests
The configuration example regarding
persistent connections
doesn't really do what is expected.Users should be using the
KeepAlive
,KeepAliveTimeout
andMaxKeepAliveRequests
Apache core directives.Also, it is important to note that, even though these directives don't work in the
.htaccess
file, Apache:has (should have)
KeepAlive On
by defaultprovides (should provide) default values for the
KeepAliveTimeout
andMaxKeepAliveRequests
directivesThe text was updated successfully, but these errors were encountered: