install

来自「开源的OpenId的一个java实现」· 代码 · 共 44 行

TXT
44
字号
  MOD_CASPACE INSTALLATION OVERVIEW

  Requiements
  ===========

  o Apache2 Web Server (2.2.0 or better)
  o libxml2 ( >= 2.6.20)
  o xmlsec ( >= 1.2.0)

  Unix
  ====
  
  $ ./configure --with-apxs2[=PATH_TO_APXS2]
  $ make
  $ cp .libs/libmod_cspace.so APACHE_MODULES_DIR/mod_cspace.so
    
  NOTES: * Replace PATH_TO_APXS2 with the path to the apxs2 file in your Apche2
           installatoin.

         * Replace APACHE_MODULES_DIR with the directory where you want your
           module to reside. Usually this is with the other modules in
           /usr/lib/apache2/modules/

  Configuration
  =============
  
  Minimal configuration required to enable cardspace on Apache2 server is as
  follows. Note that this assumes that a PHP-like framework is in place to
  provide session management.

  LoadModule cspace_module modules/mod_cspace.so
  <Location /identity/>
      UseCardSpaceAuth
  </Location>

  NOTE: You need mod_ssl[1] configured properly for SSL requests in order to
        use mod_cspace.

  For a complete list of configuration options please refer to the 
  MOD_CSPACE_GUIDE or [2]

  [1] www.modssl.org
  [2] http://wso2.org/project/solutions/identity/1.0/docs/mod_cspace_config.html

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?