.. -*- coding: utf-8 -*-Configure an instance=====================While creating an instance, a configuration file is generated in:: $ (CW_REGISTRY) / <instance> / <configuration name>.confFor example:: /etc/cubicweb.d/JPL/all-in-one.confIt is a simple text file format INI. In the following description,each option name is prefixed with its own section and followed by itsdefault value if necessarry, e.g. "`<section>.<option>` [value]."Configuring the Web server--------------------------:`web.auth-model` [cookie]: authentication mode, cookie or http:`web.realm`: realm of the application in http authentication mode:`web.http-session-time` [0]: period of inactivity of an HTTP session before it closes automatically. Duration in seconds, 0 meaning no expiration (or more exactly at the closing of the browser client):`main.anonymous-user`, `main.anonymous-password`: login and password to use to connect to the RQL server with HTTP anonymous connection. EUser account should exist.:`main.base-url`: url base site to be used to generate the urls of web pagesHttps configuration```````````````````It is possible to make a site accessible for anonymous http connectionsand https for authenticated users. This requires touse apache (by example) for redirection and the variable `main.https-url`of configuration file.:Example: For an apache redirection of a site accessible via `http://localhost/demo` and `https://localhost/demo` and actually running on port 8080, it takes to the http::: RewriteCond %(REQUEST_URI) ^/demo RewriteRule ^/demo$/demo/ RewriteRule ^/demo/(.*) http://127.0.0.1:8080/$1 [L,P] and for the https::: RewriteCond %(REQUEST_URI) ^/ demo RewriteRule ^/demo$/demo/ RewriteRule ^/demo/(.*) http://127.0.0.1:8080/https/$1 [L,P] and we will file in the all-in-one.conf of the instance::: base-url = http://localhost/demo https-url = `https://localhost/demo`Setting up the web--------------------------------:`web.embed-allowed`: regular expression matching sites which could be "embedded" in the site (controllers 'embed'):`web.submit-url`: url where the bugs encountered in the application can be mailed toRQL server configuration------------------------:`main.host`: host name if it can not be detected correctly:`main.pid-file`: file where will be written the server pid:`main.uid`: user account to use for launching the server when it is root launched by init:`main.session-time [30*60]`: timeout of a RQL session:`main.query-log-file`: file where all requests RQL executed by the server are writtenPyro configuration for the instance-----------------------------------Web server side::`pyro-client.pyro-application-id`: pyro identifier of RQL server (e.g. the instance name)RQL server side::`pyro-server.pyro-port`: pyro port number. If none is specified, a port is assigned automatically.RQL and web servers side::`pyro-name-server.pyro-ns-host`: hostname hosting pyro server name. If no value is specified, it is located by a request from broadcast:`pyro-name-server.pyro-ns-group` [cubicweb]: pyro group in which to save the applicationConfiguring e-mail------------------RQL and web server side::`email.mangle-mails [no]`: indicates whether the email addresses must be displayed as is or transformedRQL server side::`email.smtp-host [mail]`: hostname hosting the SMTP server to use for outgoing mail:`email.smtp-port [25]`: SMTP server port to use for outgoing mail:`email.sender-name`: name to use for outgoing mail of the application:`email.sender-addr`: address for outgoing mail of the application:`email.default dest-addrs`: destination addresses by default, if used by the configuration of the dissemination of the model (separated by commas):`email.supervising-addrs`: destination addresses of e-mails of supervision (separated by commas)Configuring logging-------------------:`main.log-threshold`: level of filtering messages (DEBUG, INFO, WARNING, ERROR):`main.log-file`: file to write messagesConfiguring Eproperties-----------------------Other configuration settings are in the form of entities `EProperty`in the database. It must be edited via the web interface or byRQL queries.:`ui.encoding`: Character encoding to use for the web:`navigation.short-line-size`: # XXX should be in ui number of characters for "short" display:`navigation.page-size`: maximum number of entities to show per results page:`navigation.related-limit`: number of related entities to show up on primary entity view:`navigation.combobox-limit`: number of entities unrelated to show up on the drop-down lists of the sight on an editing entity view