Merge pull request #1 from inverse-inc/master

Fixes a few erroneous locations, statements, and missing setup steps.
This commit is contained in:
Nick Pappas
2012-03-07 11:24:12 -08:00
4 changed files with 9 additions and 8 deletions

View File

@@ -1,6 +1,6 @@
-e Options FollowSymLinks
-e php_flag register_globals off
-e php_flag register_long_arrays on
-e AddType application/x-x509-ca-cert .crt .pem
-e AddType application/pkix-crl .crl
-e AddType application/pkix-cert .cer .der
Options FollowSymLinks
php_flag register_globals off
php_flag register_long_arrays on
AddType application/x-x509-ca-cert .crt .pem
AddType application/pkix-crl .crl
AddType application/pkix-cert .cer .der

View File

@@ -60,6 +60,7 @@ Unpack the PHPki tarball onto your web server. For example:
cp phpki.tar.gz /var/tmp
cd /var/www/html
tar -xzvf /var/tmp/phpki.tar.gz
chown <apache-user> -R phpki/
To configure the certificate authority and create your root certificate,
point your browser to where you unpacked PHPki. For example:

View File

@@ -1,3 +1,3 @@
-e <?php
<?php
header("Location: ./../index.php");
?>

View File

@@ -7,7 +7,7 @@ include('./include/common.php');
printHeader('setup');
print '<center><font color=red><h1>READ ME</h1></font></center>';
print '<pre>';
readfile('./README');
readfile('./README.md');
print '</pre>';
printFooter();
?>