Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-pylib
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
caosdb-pylib
Commits
08c566e6
Verified
Commit
08c566e6
authored
4 years ago
by
Timm Fitschen
Browse files
Options
Downloads
Patches
Plain Diff
DOC: add description of implementation and socket_proxy config options
parent
5febd1fc
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
examples/pycaosdb.ini
+15
-11
15 additions, 11 deletions
examples/pycaosdb.ini
with
15 additions
and
11 deletions
examples/pycaosdb.ini
+
15
−
11
View file @
08c566e6
...
...
@@ -15,12 +15,12 @@
# The password input method defines how the password is supplied that is used
# for authentication with the server.
#
# DEFAULT: `input`
# DEFAULT: `input`
# The username is optional in this case. The password is entered directly by the user.
# password_method=input
#
# OR: `plain`
# This implies that the password must # be saved as plain text in a
# OR: `plain`
# This implies that the password must # be saved as plain text in a
# configuration under the 'password' key.
# password_method=plain
# password=caosdb
...
...
@@ -32,7 +32,7 @@
# password_method=pass
# password_identifier=caosdb_password
#
# OR: `keyring`
# OR: `keyring`
# Using the system keyring/wallet (macOS, GNOME, KDE, Windows)
# requires installation of the keyring python package (pip install keyring).
# password_method=keyring
...
...
@@ -41,20 +41,24 @@
# not recommended for users.
# auth_token=TOKEN
# If the server's SSL certificate cannot be validated by your installed
# certificates (default or installed by your admins), you may also need to
# If the server's SSL certificate cannot be validated by your installed
# certificates (default or installed by your admins), you may also need to
# supply the matching key (pem file):
# cacert=/path/to/caosdb.ca.pem
# If this option is set, the SSL certificate will be ignored. Use with care!
# If this option is set, the SSL certificate of the server will not be
# validated. This has the potential of a man-in-the-middle attack. Use with care!
# ssl_insecure=True
# You may define the ssl version to be used. It has to be the name of the
# You may define the ssl version to be used. It has to be the name of the
# corresponding attribute in the Python ssl module.
# ssl_version=PROTOCOL_TLS
# You can define a socket proxy to be used.
# socket_proxy=
# This is for the case that the server sits behind a firewall which is being
# tunnelled with a socket proxy (SOCKS4 or SOCKS5) (e.g. via ssh's -D option or
# a dedicated proxy server).
# socket_proxy=localhost:12345
#
You can define the connection implementation to be used
.
# implementation
#
This option is used internally and for testing. Do not override
.
# implementation
=_DefaultCaosDBServerConnection
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment