diff options
author | redmatrix <git@macgirvin.com> | 2016-01-22 02:22:27 -0800 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-01-22 02:22:27 -0800 |
commit | 48495f41e898498a91a1b3d9e8fa1950e60a12de (patch) | |
tree | 79b5e431cc8be3d826d0aea57804a6f27a83722e /mod/hostxrd.php | |
parent | 75468c255a5fcb7d78a95e6c865d4d503efbfbfc (diff) | |
download | volse-hubzilla-48495f41e898498a91a1b3d9e8fa1950e60a12de.tar.gz volse-hubzilla-48495f41e898498a91a1b3d9e8fa1950e60a12de.tar.bz2 volse-hubzilla-48495f41e898498a91a1b3d9e8fa1950e60a12de.zip |
provide mechanism for custom .well-known handlers and static files (e.g. for letsencypt ownership verification). Document that if you create a .well-known directory to validate a letsencrypt cert you need to remove it before installing hubzilla. We probably need a check for this in the install checklist.
Diffstat (limited to 'mod/hostxrd.php')
-rw-r--r-- | mod/hostxrd.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mod/hostxrd.php b/mod/hostxrd.php index 0e18c133b..18066b7bf 100644 --- a/mod/hostxrd.php +++ b/mod/hostxrd.php @@ -12,6 +12,7 @@ function hostxrd_init(&$a) { )); $arr = array('xrd' => $x); call_hooks('hostxrd',$arr); + echo $arr['xrd']; killme(); } |