summaryrefslogtreecommitdiffstats
path: root/webapp
diff options
context:
space:
mode:
authorWilliam Gathoye <william@gathoye.be>2016-10-17 14:11:24 +0200
committerChristopher Speller <crspeller@gmail.com>2016-10-17 08:11:24 -0400
commitb1e2b23b882ec062cfd7209abeed417eb07e121e (patch)
treee375e45b3ab4e9f776dd108d6e9190aebe536b95 /webapp
parentfbd1aa654c4d6762fe653d2b8499617cb81b6b74 (diff)
downloadchat-b1e2b23b882ec062cfd7209abeed417eb07e121e.tar.gz
chat-b1e2b23b882ec062cfd7209abeed417eb07e121e.tar.bz2
chat-b1e2b23b882ec062cfd7209abeed417eb07e121e.zip
Be more explicit wrt. low level ports for newbies (#4158)
Diffstat (limited to 'webapp')
-rw-r--r--webapp/components/admin_console/configuration_settings.jsx2
-rw-r--r--webapp/i18n/en.json2
2 files changed, 2 insertions, 2 deletions
diff --git a/webapp/components/admin_console/configuration_settings.jsx b/webapp/components/admin_console/configuration_settings.jsx
index 59fa1d781..4653a5df9 100644
--- a/webapp/components/admin_console/configuration_settings.jsx
+++ b/webapp/components/admin_console/configuration_settings.jsx
@@ -113,7 +113,7 @@ export default class ConfigurationSettings extends AdminSettings {
helpText={
<FormattedMessage
id='admin.service.listenDescription'
- defaultMessage='The address to which to bind and listen. Entering ":8065" will bind to all interfaces or you can choose one like "127.0.0.1:8065". If you choose a low number port, you must have permissions to bind to that port. On Linux you can use: "sudo setcap cap_net_bind_service=+ep ./bin/platform" to allow Mattermost to bind to low ports.'
+ defaultMessage='The address and port to which to bind and listen. Specifying ":8065" will bind to all network interfaces. Specifying "127.0.0.1:8065" will only bind to the network interface having that IP address. If you choose a port of a lower level (called "system ports" or "well-known ports", in the range of 0-1023), you must have permissions to bind to that port. On Linux you can use: "sudo setcap cap_net_bind_service=+ep ./bin/platform" to allow Mattermost to bind to well-known ports.'
/>
}
value={this.state.listenAddress}
diff --git a/webapp/i18n/en.json b/webapp/i18n/en.json
index 75787f8ae..921fc17d2 100644
--- a/webapp/i18n/en.json
+++ b/webapp/i18n/en.json
@@ -648,7 +648,7 @@
"admin.service.integrationAdmin": "Restrict managing integrations to Admins:",
"admin.service.integrationAdminDesc": "When true, webhooks and slash commands can only be created, edited and viewed by Team and System Admins, and OAuth 2.0 applications by System Admins. Integrations are available to all users after they have been created by the Admin.",
"admin.service.listenAddress": "Listen Address:",
- "admin.service.listenDescription": "The address to which to bind and listen. Entering \":8065\" will bind to all interfaces or you can choose one like \"127.0.0.1:8065\". If you choose a low number port, you must have permissions to bind to that port. On Linux you can use: \"sudo setcap cap_net_bind_service=+ep ./bin/platform\" to allow Mattermost to bind to low ports.",
+ "admin.service.listenDescription": "The address and port to which to bind and listen. Specifying \":8065\" will bind to all network interfaces. Specifying \"127.0.0.1:8065\" will only bind to the network interface having that IP address. If you choose a port of a lower level (called \"system ports\" or \"well-known ports\", in the range of 0-1023), you must have permissions to bind to that port. On Linux you can use: \"sudo setcap cap_net_bind_service=+ep ./bin/platform\" to allow Mattermost to bind to well-known ports.",
"admin.service.listenExample": "E.g.: \":8065\"",
"admin.service.mfaDesc": "When true, users will be given the option to add multi-factor authentication to their account. They will need a smartphone and an authenticator app such as Google Authenticator.",
"admin.service.mfaTitle": "Enable Multi-factor Authentication:",