From 49bf6edc9b507f6ffe129600a4b3ece2a43d50ba Mon Sep 17 00:00:00 2001 From: Donald Webster Date: Sat, 20 Jan 2024 23:34:37 -0800 Subject: [PATCH] Specify default values for PUID and PGID and that they cant be 0 (root). --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e582184..c7a3c45 100644 --- a/README.md +++ b/README.md @@ -78,8 +78,8 @@ It is highly recommended you set the following environment values before startin | ---------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------- | -------------- | | PLAYERS* | Max amount of players that are able to join the server | 16 | 1-31 | | PORT* | UDP port that the server will expose | 8211 | 1024-65535 | -| PUID* | The uid of the user the server should run as | 8211 | 1024-65535 | -| PGID* | The gid of the group the server should run as | 8211 | 1024-65535 | +| PUID* | The uid of the user the server should run as | 1000 | !0 | +| PGID* | The gid of the group the server should run as | 1000 | !0 | | MULTITHREADING** | Improves performance in multi-threaded CPU environments. It is effective up to a maximum of about 4 threads, and allocating more than this number of threads does not make much sense. | false | true/false | | COMMUNITY | Whether or not the server shows up in the community server browser (USE WITH SERVER_PASSWORD) | false | true/false | | PUBLIC_IP | You can manually specify the global IP address of the network on which the server running.If not specified, it will be detected automatically. If it does not work well, try manual configuration. | | x.x.x.x |