Please do not reply directly to this email. All additional comments should be made in the comments box of this bug.
https://bugzilla.redhat.com/show_bug.cgi?id=603346
--- Comment #9 from Lev Shamardin shamardin@gmail.com 2011-06-10 14:47:46 EDT --- And almost forgot another missing documentation/packaing(?) minor, but still important point: this package is useless without SSL with certificates peer authentication, so README.Fedora should include
1. Notice about this requirement. 2. Example configuration for mod_ssl.
Also probably it would be a good idea to include a universal configuration snippet into /etc/http/conf.d/pva.conf, something like
<Directory/usr/share/pva/ >
...
<IfModule mod_ssl.c> SSLRequireSSL SSLVerifyClient require SSLVerifyDepth 10 # or other appropriate number </IfModule> <IfModule mod_gnutls.c> GnuTLSClientVerify require </IfModule> <IfModule mod_nss.c> SSLVerifyDepth 10 # not sure about this directive </IfModule>
... </Directory>