From 20db584c00966444e51d38098fa31ea0cca5b6bc Mon Sep 17 00:00:00 2001 From: Ryan Turner <16946913+TheSCREWEDSoftware@users.noreply.github.com> Date: Fri, 26 Dec 2025 08:19:00 +0000 Subject: [PATCH] fix(Core/Config) - Add UseSocketActivation to auth config (#24075) Co-authored-by: FlyingArowana --- .../apps/authserver/authserver.conf.dist | 18 ++++++++++++++++++ .../apps/worldserver/worldserver.conf.dist | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/src/server/apps/authserver/authserver.conf.dist b/src/server/apps/authserver/authserver.conf.dist index 13f2f7063..6e3deff05 100644 --- a/src/server/apps/authserver/authserver.conf.dist +++ b/src/server/apps/authserver/authserver.conf.dist @@ -12,6 +12,7 @@ # CRYPTOGRAPHY # UPDATE SETTINGS # LOGGING SYSTEM SETTINGS +# NETWORK # ################################################################################################### @@ -440,3 +441,20 @@ Logger.root=4,Console Auth # ################################################################################################### + +################################################################################################### +# NETWORK +# +# Network.UseSocketActivation +# Description: [LINUX ONLY FEATURE] Enable systemd socket activation support for the authserver. +# When enabled and the process is started by systemd socket activation, +# the server will use the socket passed by systemd instead of +# creating and binding its own listening socket. Disabled by default. +# +# Example: 1 - (Enabled) +# Default: 0 - (Disabled) + +Network.UseSocketActivation = 0 + +# +################################################################################################### diff --git a/src/server/apps/worldserver/worldserver.conf.dist b/src/server/apps/worldserver/worldserver.conf.dist index fd9c61cfe..92ed0e3af 100644 --- a/src/server/apps/worldserver/worldserver.conf.dist +++ b/src/server/apps/worldserver/worldserver.conf.dist @@ -399,7 +399,7 @@ Network.EnableProxyProtocol = 0 # # Network.UseSocketActivation -# Description: Enable systemd socket activation support for the worldserver. +# Description: [LINUX ONLY FEATURE] Enable systemd socket activation support for the worldserver. # When enabled and the process is started by systemd socket activation, # the server will use the socket passed by systemd instead of # creating and binding its own listening socket. Disabled by default.