Index: doc/src/sgml/runtime.sgml =================================================================== RCS file: /var/lib/cvs/pgsql-server/doc/src/sgml/runtime.sgml,v retrieving revision 1.156 diff -c -r1.156 runtime.sgml *** doc/src/sgml/runtime.sgml 15 Nov 2002 03:22:30 -0000 1.156 --- doc/src/sgml/runtime.sgml 20 Nov 2002 22:08:12 -0000 *************** *** 1642,1647 **** --- 1642,1670 ---- + SUPERUSER_RESERVED_CONNECTIONS + (integer) + + + Determines the number of connection slots that + are reserved for connections by the PostgreSQL + superuser. The maximum number of concurrent connections that + can be made from all user accounts combined is + max_connections minus + superuser_reserved_connections; beyond that + point, any additional connections from non-superuser accounts + are refused. + + + + The default value is 2. This must be less than the value of + max_connections. This parameter can only be + set at server start. + + + + + MAX_EXPR_DEPTH (integer) *************** *** 2941,2964 **** ! With SSL support compiled in, the PostgreSQL server ! can be started with SSL support by setting the parameter ! ssl to on in ! postgresql.conf. When starting in SSL mode, ! the server will look for the files server.key and ! server.crt in the data directory. These files should ! contain the server private key and certificate respectively. These ! files must be set up correctly before an SSL-enabled server can ! start. If the private key is protected with a passphrase, the ! server will prompt for the passphrase and will not start until it ! has been entered. ! The server will listen for both standard and SSL connections on the ! same TCP/IP port, and will negotiate with any connecting client on ! whether to use SSL. See about ! how to force the server to only use of SSL for certain connections. --- 2964,2988 ---- ! With SSL support compiled in, the ! PostgreSQL server can be started with ! SSL support by setting the parameter ! ssl to on in postgresql.conf. When ! starting in SSL mode, the server will look for the ! files server.key and server.crt in the ! data directory. These files should contain the server private key ! and certificate respectively. These files must be set up correctly ! before an SSL-enabled server can start. If the private key is ! protected with a passphrase, the server will prompt for the ! passphrase and will not start until it has been entered. ! The server will listen for both standard and SSL ! connections on the same TCP/IP port, and will negotiate with any ! connecting client on whether to use SSL. See about how to force the server to ! only use of SSL for certain connections.