1

我已经在 apache2.0 中配置了具有不同端口号的 http 和 https,现在我需要添加名为 headerssl 的自定义标头,并且此标头必须说它"hi it took D=345 microsecond to serve you."应该只能通过 https 站点访问。

4

1 回答 1

0

请参阅此 mod_ssl 指南以设置启用 SSL 的站点,默认的 Apache 安装包括一个示例 SSL 站点以供参考。您可以将其用作起点并根据您的配置对其进行自定义。

请参阅此 mod_headers 指南以配置自定义标头。对 mod_headers 使用以下语法,但将此行放在 SSL 配置中,请参见下面的示例:

<VirtualHost *:443>
    ServerName www.example.com
    SSLEngine on
    SSLCertificateFile "/path/to/www.example.com.cert"
    SSLCertificateKeyFile "/path/to/www.example.com.key"

    Header set headerssl "Hi it took D = %D microseconds to serve you"

</VirtualHost>
于 2013-11-15T19:09:27.667 回答