-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
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
SSLOptions +StdEnvVars should be set globally #487
Comments
I'd argue that |
To quote @rbowen:
|
antaflos
added a commit
to antaflos/puppetlabs-apache
that referenced
this issue
Nov 22, 2013
Support for ScriptAlias currently implicitly and automatically creates <Directory> configuration directives for the path component in a given ScriptAlias directive. These are not useful or needed, according to the mod_alias documentation. Fixes issue puppetlabs#486. This change also indirectly relates to puppetlabs#487 because the implicitly created <Directory> entry for each ScriptAlias path also had `SSLOptions +StdEnvVars` set for that directory.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently we have code that explicitly sets
SSLOptions +StdEnvVars
in a directory forScriptAlias
. We have code that setsin each SSL vhost, which, frankly, is just sad.
While I agree that it's useful to be able to override
SSLOptions
in a per-vhost and a per-directory context,SSLOptions +StdEnvVars
is so useful for every application that is (consciously) running under SSL, that we should just set it in server context.The text was updated successfully, but these errors were encountered: