We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06d3292 commit 33d50b9Copy full SHA for 33d50b9
USERGUIDE.md
@@ -179,6 +179,8 @@ rest:
179
port: 5000 # Port to run the REST server
180
endpoint: /message # Endpoint for receiving messages
181
debug: false # Enable/disable Flask debug mode
182
+ certfile: /path/to/certfile.pem # Path to the SSL certificate file (enables HTTPS if provided)
183
+ keyfile: /path/to/keyfile.pem # Path to the SSL private key file (required when using certfile)
184
185
# Logging configuration
186
logging:
simulation_bridge/config/config.yaml.template
@@ -69,6 +69,8 @@ rest:
69
port: 5000
70
endpoint: /message
71
debug: false
72
+ certfile: /path/to/certfile.pem
73
+ keyfile: /path/to/keyfile.pem
74
75
76
level: INFO
0 commit comments