From 2a54e01821117eed98657e0c3cf983024d6a4f32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20L=C3=B3pez=20Guimaraes?= Date: Tue, 11 Feb 2025 18:07:40 +0000 Subject: [PATCH] chore: Remove Kerberos env variable reference from README --- README.md | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 99e198e..5b8d050 100644 --- a/README.md +++ b/README.md @@ -26,8 +26,8 @@ Create a `.env` file with all of the necessary environment variables set. The va Example: ``` -PN_LM2_KERBEROS_PASSWORD=yourpassword PN_LM2_AUTHENTICATION_SERVER_PORT=61001 +PN_LM2_SECURE_SERVER_PORT=61002 ... ``` @@ -69,16 +69,15 @@ All configuration options are handled via environment variables `.env` files are supported -| Name | Description | Required | -|-------------------------------------|------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------| -| `PN_LM2_POSTGRES_URI` | Fully qualified URI to your Postgres server (Example `postgres://username:password@localhost/lm2?sslmode=disable`) | Yes | -| `PN_LM2_KERBEROS_PASSWORD` | Password used as part of the internal server data in Kerberos tickets | No (Default password `password` will be used) | -| `PN_LM2_AUTHENTICATION_SERVER_PORT` | Port for the authentication server | Yes | -| `PN_LM2_SECURE_SERVER_HOST` | Host name for the secure server (should point to the same address as the authentication server) | Yes | -| `PN_LM2_SECURE_SERVER_PORT` | Port for the secure server | Yes | -| `PN_LM2_ACCOUNT_GRPC_HOST` | Host name for your account server gRPC service | Yes | -| `PN_LM2_ACCOUNT_GRPC_PORT` | Port for your account server gRPC service | Yes | -| `PN_LM2_ACCOUNT_GRPC_API_KEY` | API key for your account server gRPC service | No (Assumed to be an open gRPC API) | -| `PN_LM2_FRIENDS_GRPC_HOST` | Host name for your friends server gRPC service | Yes | -| `PN_LM2_FRIENDS_GRPC_PORT` | Port for your friends server gRPC service | Yes | -| `PN_LM2_FRIENDS_GRPC_API_KEY` | API key for your friends server gRPC service | No (Assumed to be an open gRPC API) | +| Name | Description | Required | +|-------------------------------------|--------------------------------------------------------------------------------------------------------------------|-------------------------------------| +| `PN_LM2_POSTGRES_URI` | Fully qualified URI to your Postgres server (Example `postgres://username:password@localhost/lm2?sslmode=disable`) | Yes | +| `PN_LM2_AUTHENTICATION_SERVER_PORT` | Port for the authentication server | Yes | +| `PN_LM2_SECURE_SERVER_HOST` | Host name for the secure server (should point to the same address as the authentication server) | Yes | +| `PN_LM2_SECURE_SERVER_PORT` | Port for the secure server | Yes | +| `PN_LM2_ACCOUNT_GRPC_HOST` | Host name for your account server gRPC service | Yes | +| `PN_LM2_ACCOUNT_GRPC_PORT` | Port for your account server gRPC service | Yes | +| `PN_LM2_ACCOUNT_GRPC_API_KEY` | API key for your account server gRPC service | No (Assumed to be an open gRPC API) | +| `PN_LM2_FRIENDS_GRPC_HOST` | Host name for your friends server gRPC service | Yes | +| `PN_LM2_FRIENDS_GRPC_PORT` | Port for your friends server gRPC service | Yes | +| `PN_LM2_FRIENDS_GRPC_API_KEY` | API key for your friends server gRPC service | No (Assumed to be an open gRPC API) |