You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rj...@apache.org on 2016/02/12 17:28:33 UTC

svn commit: r1730061 - /httpd/test/framework/trunk/t/conf/ssl/ssl.conf.in

Author: rjung
Date: Fri Feb 12 16:28:32 2016
New Revision: 1730061

URL: http://svn.apache.org/viewvc?rev=1730061&view=rev
Log:
Define CTSCTStorage for mod_ssl_ct.
The module does not load without setting
CTSCTStorage.

The directory will be created by
Apache-Test/lib/Apache/TestConfig.pm.

Modified:
    httpd/test/framework/trunk/t/conf/ssl/ssl.conf.in

Modified: httpd/test/framework/trunk/t/conf/ssl/ssl.conf.in
URL: http://svn.apache.org/viewvc/httpd/test/framework/trunk/t/conf/ssl/ssl.conf.in?rev=1730061&r1=1730060&r2=1730061&view=diff
==============================================================================
--- httpd/test/framework/trunk/t/conf/ssl/ssl.conf.in (original)
+++ httpd/test/framework/trunk/t/conf/ssl/ssl.conf.in Fri Feb 12 16:28:32 2016
@@ -253,3 +253,8 @@
     </Location>
 
 </IfModule>
+
+<IfModule @ssl_module@>
+    # CTSCTStorage is needed, otherwise mod_ssl_ct does not load
+    CTSCTStorage ssl_ct_storage
+</IfModule>



Re: svn commit: r1730061 - /httpd/test/framework/trunk/t/conf/ssl/ssl.conf.in

Posted by Rainer Jung <ra...@kippdata.de>.
Am 15.02.2016 um 12:11 schrieb Ruediger Pluem:
>
>
> On 02/12/2016 05:28 PM, rjung@apache.org wrote:
>> Author: rjung
>> Date: Fri Feb 12 16:28:32 2016
>> New Revision: 1730061
>>
>> URL: http://svn.apache.org/viewvc?rev=1730061&view=rev
>> Log:
>> Define CTSCTStorage for mod_ssl_ct.
>> The module does not load without setting
>> CTSCTStorage.
>>
>> The directory will be created by
>> Apache-Test/lib/Apache/TestConfig.pm.
>>
>> Modified:
>>      httpd/test/framework/trunk/t/conf/ssl/ssl.conf.in
>>
>> Modified: httpd/test/framework/trunk/t/conf/ssl/ssl.conf.in
>> URL: http://svn.apache.org/viewvc/httpd/test/framework/trunk/t/conf/ssl/ssl.conf.in?rev=1730061&r1=1730060&r2=1730061&view=diff
>> ==============================================================================
>> --- httpd/test/framework/trunk/t/conf/ssl/ssl.conf.in (original)
>> +++ httpd/test/framework/trunk/t/conf/ssl/ssl.conf.in Fri Feb 12 16:28:32 2016
>> @@ -253,3 +253,8 @@
>>       </Location>
>>
>>   </IfModule>
>> +
>> +<IfModule @ssl_module@>
>> +    # CTSCTStorage is needed, otherwise mod_ssl_ct does not load
>> +    CTSCTStorage ssl_ct_storage
>> +</IfModule>
>
> This breaks the test suite if you do not have mod_ssl_ct.

I will revert, because it doesn't work for mod_ssl_ct either 
(@ssl_module@ and there's no @mod_ssl_ctmodule@).

Regards,

Rainer


Re: svn commit: r1730061 - /httpd/test/framework/trunk/t/conf/ssl/ssl.conf.in

Posted by Ruediger Pluem <rp...@apache.org>.

On 02/12/2016 05:28 PM, rjung@apache.org wrote:
> Author: rjung
> Date: Fri Feb 12 16:28:32 2016
> New Revision: 1730061
> 
> URL: http://svn.apache.org/viewvc?rev=1730061&view=rev
> Log:
> Define CTSCTStorage for mod_ssl_ct.
> The module does not load without setting
> CTSCTStorage.
> 
> The directory will be created by
> Apache-Test/lib/Apache/TestConfig.pm.
> 
> Modified:
>     httpd/test/framework/trunk/t/conf/ssl/ssl.conf.in
> 
> Modified: httpd/test/framework/trunk/t/conf/ssl/ssl.conf.in
> URL: http://svn.apache.org/viewvc/httpd/test/framework/trunk/t/conf/ssl/ssl.conf.in?rev=1730061&r1=1730060&r2=1730061&view=diff
> ==============================================================================
> --- httpd/test/framework/trunk/t/conf/ssl/ssl.conf.in (original)
> +++ httpd/test/framework/trunk/t/conf/ssl/ssl.conf.in Fri Feb 12 16:28:32 2016
> @@ -253,3 +253,8 @@
>      </Location>
>  
>  </IfModule>
> +
> +<IfModule @ssl_module@>
> +    # CTSCTStorage is needed, otherwise mod_ssl_ct does not load
> +    CTSCTStorage ssl_ct_storage
> +</IfModule>

This breaks the test suite if you do not have mod_ssl_ct.

Regards

RĂ¼diger