1
0
mirror of https://github.com/kakwa/uts-server synced 2024-06-07 03:27:50 +02:00

fix some typo in documenation

This commit is contained in:
kakwa 2016-09-11 19:08:51 +02:00
parent 0e006a0a61
commit c08b00d36b
3 changed files with 13 additions and 13 deletions

View File

@ -8,7 +8,7 @@ uts-server
:target: http://uts-server.readthedocs.org/en/latest/?badge=latest :target: http://uts-server.readthedocs.org/en/latest/?badge=latest
:alt: Documentation Status :alt: Documentation Status
Micro timestamp server (RFC 3161) written in C Micro Time-Stamp server (RFC 3161) written in C
---- ----

View File

@ -1,4 +1,4 @@
# Section for declarinG OID mapping. Just add <name> = <OID> pairs. # Section for declaring OID mapping. Just add <name> = <OID> pairs.
[ oids ] [ oids ]
tsa_policy1 = 1.2.3.4.1 tsa_policy1 = 1.2.3.4.1
@ -8,7 +8,7 @@ tsa_policy3 = 1.2.3.4.5.7
# Main configuration section (mostly http configuration). # Main configuration section (mostly http configuration).
[ main ] [ main ]
# Comma-separated list of ips:ports to listen on. # Comma-separated list of IP:port tuples to listen on.
# If the port is SSL, a letter s must be appended. # If the port is SSL, a letter s must be appended.
# #
# Ex: listening_ports = 80,443s # Ex: listening_ports = 80,443s
@ -66,7 +66,7 @@ request_timeout_ms = 30000
#ssl_verify_depth = 9 #ssl_verify_depth = 9
# Loads default trusted certificates # Loads default trusted certificates
# locations set at openssl compile time. # locations set at OpenSSL compile time.
#ssl_default_verify_paths = yes #ssl_default_verify_paths = yes
# See https://www.openssl.org/docs/manmaster/apps/ciphers.html # See https://www.openssl.org/docs/manmaster/apps/ciphers.html
@ -108,7 +108,7 @@ log_level = info
# Name of the TSA section to use as default. # Name of the TSA section to use as default.
default_tsa = tsa_config1 default_tsa = tsa_config1
# Example of timestamp section configuration. # Example of Time-Stamp section configuration.
[ tsa_config1 ] [ tsa_config1 ]
# TSA root directory. # TSA root directory.
@ -135,10 +135,10 @@ other_policies = tsa_policy2, tsa_policy3
# Acceptable message digests. (mandatory) # Acceptable message digests. (mandatory)
digests = md5, sha1 digests = md5, sha1
# Timestamp accuracy. (optional) # Time-Stamp accuracy. (optional)
accuracy = secs:1, millisecs:500, microsecs:100 accuracy = secs:1, millisecs:500, microsecs:100
# Number of decimals for timestamp. (optional) # Number of decimals for Time-Stamp. (optional)
clock_precision_digits = 0 clock_precision_digits = 0
# Is ordering defined for timestamps? (optional, default: no) # Is ordering defined for timestamps? (optional, default: no)

View File

@ -16,7 +16,7 @@ Main configuration section (mostly http configuration).
| enable_keep_alive | Allows clients to reuse TCP connection for subsequent | no | | enable_keep_alive | Allows clients to reuse TCP connection for subsequent | no |
| | HTTP requests, which improves performance. | | | | HTTP requests, which improves performance. | |
+-----------------------------+---------------------------------------------------------------------+--------------------------------------+ +-----------------------------+---------------------------------------------------------------------+--------------------------------------+
| listening_ports | Comma-separated list of ips:ports to listen on. | 127.0.0.1:2020 | | listening_ports | Comma-separated list of IP:port tuples to listen on. | 127.0.0.1:2020 |
| | If the port is SSL, a letter s must be appended. | | | | If the port is SSL, a letter s must be appended. | |
| | | | | | | |
| | Ex: listening_ports = 80,443s | | | | Ex: listening_ports = 80,443s | |
@ -43,7 +43,7 @@ Main configuration section (mostly http configuration).
| | for more detailed | | | | for more detailed | |
+-----------------------------+---------------------------------------------------------------------+--------------------------------------+ +-----------------------------+---------------------------------------------------------------------+--------------------------------------+
| ssl_default_verify_paths | Loads default trusted certificates | yes | | ssl_default_verify_paths | Loads default trusted certificates | yes |
| | locations set at openssl compile time. | | | | locations set at OpenSSL compile time. | |
+-----------------------------+---------------------------------------------------------------------+--------------------------------------+ +-----------------------------+---------------------------------------------------------------------+--------------------------------------+
| ssl_protocol_version | Sets the minimal accepted version of SSL/TLS protocol | 3 | | ssl_protocol_version | Sets the minimal accepted version of SSL/TLS protocol | 3 |
| | according to the table: | | | | according to the table: | |
@ -88,7 +88,7 @@ Main configuration section (mostly http configuration).
Section [ oids ] Section [ oids ]
---------------- ----------------
Section for declarinG OID mapping. Just add <name> = <OID> pairs. Section for declaring OID mapping. Just add <name> = <OID> pairs.
+-----------------------------+---------------------------------------------------------------------+--------------------------------------+ +-----------------------------+---------------------------------------------------------------------+--------------------------------------+
| Parameter | Description | Example Value | | Parameter | Description | Example Value |
@ -114,16 +114,16 @@ Section defining which TSA section to use.
Section [ tsa_config1 ] Section [ tsa_config1 ]
----------------------- -----------------------
Example of timestamp section configuration. Example of Time-Stamp section configuration.
+-----------------------------+---------------------------------------------------------------------+--------------------------------------+ +-----------------------------+---------------------------------------------------------------------+--------------------------------------+
| Parameter | Description | Example Value | | Parameter | Description | Example Value |
+=============================+=====================================================================+======================================+ +=============================+=====================================================================+======================================+
| accuracy | Timestamp accuracy. (optional) | secs:1, millisecs:500, microsecs:100 | | accuracy | Time-Stamp accuracy. (optional) | secs:1, millisecs:500, microsecs:100 |
+-----------------------------+---------------------------------------------------------------------+--------------------------------------+ +-----------------------------+---------------------------------------------------------------------+--------------------------------------+
| certs | Certificate chain to include in reply. (optional) | $dir/cacert.pem | | certs | Certificate chain to include in reply. (optional) | $dir/cacert.pem |
+-----------------------------+---------------------------------------------------------------------+--------------------------------------+ +-----------------------------+---------------------------------------------------------------------+--------------------------------------+
| clock_precision_digits | Number of decimals for timestamp. (optional) | 0 | | clock_precision_digits | Number of decimals for Time-Stamp. (optional) | 0 |
+-----------------------------+---------------------------------------------------------------------+--------------------------------------+ +-----------------------------+---------------------------------------------------------------------+--------------------------------------+
| crypto_device | OpenSSL engine to use for signing. | builtin | | crypto_device | OpenSSL engine to use for signing. | builtin |
+-----------------------------+---------------------------------------------------------------------+--------------------------------------+ +-----------------------------+---------------------------------------------------------------------+--------------------------------------+