Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
60a6dbb7
Commit
60a6dbb7
authored
Dec 25, 2007
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add two documentation tables to outline SSL file usage for client and server.
parent
08c37fd4
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
87 additions
and
3 deletions
+87
-3
doc/src/sgml/libpq.sgml
doc/src/sgml/libpq.sgml
+43
-1
doc/src/sgml/runtime.sgml
doc/src/sgml/runtime.sgml
+44
-2
No files found.
doc/src/sgml/libpq.sgml
View file @
60a6dbb7
<!-- $PostgreSQL: pgsql/doc/src/sgml/libpq.sgml,v 1.2
49 2007/12/25 04:00:43
momjian Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/libpq.sgml,v 1.2
50 2007/12/25 06:15:34
momjian Exp $ -->
<chapter id="libpq">
<title><application>libpq</application> - C Library</title>
...
...
@@ -5200,6 +5200,48 @@ defaultNoticeProcessor(void *arg, const char *message)
application.
</para>
<table id="libpq-ssl-file-usage">
<title>SSL Client File Usage</title>
<tgroup cols="3">
<thead>
<row>
<entry>File</entry>
<entry>Contents</entry>
<entry>Effect</entry>
</row>
</thead>
<tbody>
<row>
<entry><filename>~/.postgresql/postgresql.crt</></entry>
<entry>client certificate</entry>
<entry>requested by server</entry>
</row>
<row>
<entry><filename>~/.postgresql/postgresql.key</></entry>
<entry>client private key</entry>
<entry>used to authenticate client certificate</entry>
</row>
<row>
<entry><filename>~/.postgresql/root.crt</></entry>
<entry>trusted certificate authorities</entry>
<entry>requests server certificate; checks certificate is
signed by a trusted certificate authority</entry>
</row>
<row>
<entry><filename>~/.postgresql/root.crl</></entry>
<entry>certificates revoked by certificate authorities</entry>
<entry>server certificate must not be on this list</entry>
</row>
</tbody>
</tgroup>
</table>
</sect1>
...
...
doc/src/sgml/runtime.sgml
View file @
60a6dbb7
<!-- $PostgreSQL: pgsql/doc/src/sgml/runtime.sgml,v 1.39
5 2007/12/25 04:00:4
4 momjian Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/runtime.sgml,v 1.39
6 2007/12/25 06:15:3
4 momjian Exp $ -->
<chapter Id="runtime">
<title>Operating System Environment</title>
...
...
@@ -1641,7 +1641,49 @@ $ <userinput>kill -INT `head -1 /usr/local/pgsql/data/postmaster.pid`</userinput
the server for changes in them to take effect.
</para>
<sect2 id="ssl-certificate">
<table id="ssl-file-usage">
<title>SSL Server File Usage</title>
<tgroup cols="3">
<thead>
<row>
<entry>File</entry>
<entry>Contents</entry>
<entry>Effect</entry>
</row>
</thead>
<tbody>
<row>
<entry><filename>server.crt</></entry>
<entry>server certificate</entry>
<entry>requested by client</entry>
</row>
<row>
<entry><filename>server.key</></entry>
<entry>server private key</entry>
<entry>used to authenticate server certificate</entry>
</row>
<row>
<entry><filename>root.crt</></entry>
<entry>trusted certificate authorities</entry>
<entry>requests client certificate; checks certificate is
signed by a trusted certificate authority</entry>
</row>
<row>
<entry><filename>root.crl</></entry>
<entry>certificates revoked by certificate authorities</entry>
<entry>client certificate must not be on this list</entry>
</row>
</tbody>
</tgroup>
</table>
<sect2 id="ssl-certificate-creation">
<title>Creating a Self-Signed Certificate</title>
<para>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment