This is an automated email from the ASF dual-hosted git repository.

gstein pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/steve.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 8d35134  More server params. Locate the database.
8d35134 is described below

commit 8d35134b3942c4385be1b81f95d7c0e72f7bc6f9
Author: Greg Stein <[email protected]>
AuthorDate: Sun Sep 28 13:24:36 2025 -0500

    More server params. Locate the database.
---
 v3/server/config.yaml.example | 19 ++++++++++++++-----
 1 file changed, 14 insertions(+), 5 deletions(-)

diff --git a/v3/server/config.yaml.example b/v3/server/config.yaml.example
index b97c69d..f0df41b 100644
--- a/v3/server/config.yaml.example
+++ b/v3/server/config.yaml.example
@@ -15,8 +15,17 @@
 # limitations under the License.
 #
 
-# Default port for the server. Typical usage is that a proxy sits
-# in front of this server, so we don't use ports 80 or 443.
-# Note: we want 78383 which is "STEVE" on your telephone keypad.
-#    ... let's settle with something close (less than 65536).
-port: 58383
+server:
+    # Default port for the server. Typical usage is that a proxy sits
+    # in front of this server, so we don't use ports 80 or 443.
+    # Note: we want 78383 which is "STEVE" on your telephone keypad.
+    #    ... let's settle with something close (less than 65536).
+    port: 58383
+
+    # Specify the .pem files to serve using TLS, or leave these two
+    # fields blank for plain HTTP.
+    certfile: server.crt
+    keyfile: server.key
+
+# Path to the database, absolute or relative to APP.
+db: steve.db

Reply via email to