Changeset 169

Show
Ignore:
Timestamp:
08/05/08 19:17:32 (4 months ago)
Author:
Adrian Georgescu <ag@ag-projects.com>
Hashname:
20080805171732-58252-7e50ae19fd00bd825c005ebfec0dcbc39b50cae8
Message:

Cosmetic changes

Files:
2 modified

Legend:

Unmodified
Added
Removed
  • README

    r167 r169  
    7676 
    7777    - Watchers (auid = watchers). This this a custom application that queries 
    78     the OpenSER database for a list of presence watchers and their status. 
     78    the sip proxy database for a list of presence watchers and their status. 
    7979    The XML schema for this application can be found in 
    8080    xcap/xml-schemas/watchers.xsd. This application is read-only. 
     
    8484 
    8585OpenXCAP server supports multiple back-end storage systems and works out of 
    86 the box with OpenSER Proxy/Registrar/Presence server from http://openser.org 
     86the box with OpenSER/Kamailio/OpenSIPs Proxy/Registrar/Presence server 
    8787 
    8888 
     
    9494 
    9595    - OpenSER from http://openser.org 
     96    - Kamailio from http://kamailio.org 
     97    - OpenSIPs from http://opensips.org 
    9698     
    9799    - simple-soap-proxy (under development by AG Projects). This client 
     
    115117      provided by the community on a best-effort basis. 
    116118 
    117     - For interaction between OpenXCAP and OpenSER you may consult the OpenSER 
    118       users mailing list at http://openser.org/pipermail/users/ 
     119Commercial support or other licensing options are available from AG Projects 
     120http://ag-projects.com 
    119121 
    120     - For commercial support or other licensing options please contact AG Projects 
    121       at http://ag-projects.com 
    122  
  • config.ini.sample

    r166 r169  
    99address = 0.0.0.0 
    1010port = 8000 
     11 
    1112; The XCAP Root URI; must not contain any port number. If it has the 'https' scheme, 
    1213; the server will listen for requests in TLS mode. 
    1314root = http://xcap.example.com/ 
     15 
    1416; The backend to be used for storage and authentication. Current supported 
    15 ; values are Database and OpenSER. 
     17; values are Database for generic support and OpenSER for integration with 
     18; OpenSER >=1.3, Kamailio or OpenSIPs solutions 
    1619backend = Database 
     20 
    1721; Validate XCAP documents against XML schemas, default is Yes 
    1822document_validation = Yes 
     23 
    1924 
    2025[Authentication] 
     
    2328; If you're using TLS, it's better to choose 'basic' because the data is encrypted anyway. 
    2429type = basic 
     30 
    2531; Specify if the passwords are stored as plain text - Yes 
    2632; or in a hashed format MD5('username:domain:password') - No 
    2733cleartext_passwords = Yes 
     34 
    2835; The default authentication realm 
    2936default_realm = example.com 
     37 
    3038; A list of trusted peers from where XCAP requests are accepted without HTTP authentication 
    3139; e.g. trusted_peers = 10.0.0.0/24, 192.168.0.1 
    3240trusted_peers = 
     41 
    3342 
    3443[TLS] 
     
    3847; Server X509 certificate 
    3948certificate = tls/server.crt 
     49 
    4050; Server X509 private key 
    4151private_key = tls/server.key 
     52 
    4253 
    4354[Database] 
     
    4758; The database connection URI for the datase with subscriber accounts 
    4859authentication_db_uri = mysql://username:password@db-host/openser 
     60 
    4961; The database connection URI for the database that stores the XCAP documents 
    5062storage_db_uri = mysql://username:password@db-host/openser 
     63 
    5164; Authentication and storage tables 
    5265subscriber_table = subscriber 
    5366xcap_table = xcap 
     67 
    5468 
    5569[OpenSER] 
     
    5973; The database connection URI for the datase with subscriber accounts 
    6074authentication_db_uri = mysql://username:password@db-host/openser 
     75 
    6176; The database connection URI for the database that stores the XCAP documents 
    6277storage_db_uri = mysql://username:password@db-host/openser 
     78 
    6379; Authentication and storage tables 
    6480subscriber_table = subscriber 
    6581xcap_table = xcap 
     82 
    6683; The address and port where the XMLRPC Management Interface of OpenSER is listening 
    6784xmlrpc_url = http://localhost:8080 
     85