diff --git a/messages/en-US.json b/messages/en-US.json
index f8b3f8b9..6ac72d8a 100644
--- a/messages/en-US.json
+++ b/messages/en-US.json
@@ -1344,5 +1344,10 @@
"remoteSubnetsDescription": "Add CIDR ranges that can be accessed from this site remotely using clients. Use format like 10.0.0.0/24. This ONLY applies to VPN client connectivity.",
"resourceEnableProxy": "Enable Public Proxy",
"resourceEnableProxyDescription": "Enable public proxying to this resource. This allows access to the resource from outside the network through the cloud on an open port. Requires Traefik config.",
- "externalProxyEnabled": "External Proxy Enabled"
+ "externalProxyEnabled": "External Proxy Enabled",
+ "siteConfiguration": "Configuration",
+ "siteAcceptClientConnections": "Accept client connections",
+ "siteAcceptClientConnectionsDescription": "Allow other devices to connect through this Newt instance as a gateway using clients.",
+ "siteAddress": "Site Address",
+ "siteAddressDescription": "Specify the IP address of the host for clients to connect to."
}
\ No newline at end of file
diff --git a/src/app/[orgId]/settings/sites/create/page.tsx b/src/app/[orgId]/settings/sites/create/page.tsx
index d6ab64d0..4d5171f1 100644
--- a/src/app/[orgId]/settings/sites/create/page.tsx
+++ b/src/app/[orgId]/settings/sites/create/page.tsx
@@ -206,8 +206,10 @@ PersistentKeepalive = 5`;
acceptClients: boolean = false
) => {
const acceptClientsFlag = acceptClients ? " --accept-clients" : "";
- const acceptClientsEnv = acceptClients ? "\n - ACCEPT_CLIENTS=true" : "";
-
+ const acceptClientsEnv = acceptClients
+ ? "\n - ACCEPT_CLIENTS=true"
+ : "";
+
const commands = {
mac: {
"Apple Silicon (arm64)": [
@@ -388,7 +390,7 @@ WantedBy=default.target`
case "freebsd":
return
+ {t("siteConfiguration")} +
++ {t("siteAcceptClientConnectionsDescription")} +
+{t("commands")}