Merge pull request #11675 from AlexSCorey/11630-WrongtooltipDocs

Fix tooltip documentation in settings
This commit is contained in:
Alex Corey
2022-02-04 10:23:11 -05:00
committed by GitHub
4 changed files with 4 additions and 5 deletions

View File

@@ -72,8 +72,8 @@ register(
'HTTP headers and meta keys to search to determine remote host ' 'HTTP headers and meta keys to search to determine remote host '
'name or IP. Add additional items to this list, such as ' 'name or IP. Add additional items to this list, such as '
'"HTTP_X_FORWARDED_FOR", if behind a reverse proxy. ' '"HTTP_X_FORWARDED_FOR", if behind a reverse proxy. '
'See the "Proxy Support" section of the Adminstrator guide for ' 'See the "Proxy Support" section of the AAP Installation guide '
'more details.' 'for more details.'
), ),
category=_('System'), category=_('System'),
category_slug='system', category_slug='system',

View File

@@ -162,7 +162,7 @@ ALLOWED_HOSTS = []
# reverse proxy. # reverse proxy.
REMOTE_HOST_HEADERS = ['REMOTE_ADDR', 'REMOTE_HOST'] REMOTE_HOST_HEADERS = ['REMOTE_ADDR', 'REMOTE_HOST']
# If we is behind a reverse proxy/load balancer, use this setting to # If we are behind a reverse proxy/load balancer, use this setting to
# allow the proxy IP addresses from which Tower should trust custom # allow the proxy IP addresses from which Tower should trust custom
# REMOTE_HOST_HEADERS header values # REMOTE_HOST_HEADERS header values
# REMOTE_HOST_HEADERS = ['HTTP_X_FORWARDED_FOR', ''REMOTE_ADDR', 'REMOTE_HOST'] # REMOTE_HOST_HEADERS = ['HTTP_X_FORWARDED_FOR', ''REMOTE_ADDR', 'REMOTE_HOST']

View File

@@ -41,7 +41,6 @@ function MiscSystemDetail() {
); );
data.DEFAULT_EXECUTION_ENVIRONMENT = name; data.DEFAULT_EXECUTION_ENVIRONMENT = name;
} }
const systemData = pluck( const systemData = pluck(
data, data,
'ACTIVITY_STREAM_ENABLED', 'ACTIVITY_STREAM_ENABLED',

View File

@@ -51,7 +51,7 @@
"type": "list", "type": "list",
"required": true, "required": true,
"label": "Remote Host Headers", "label": "Remote Host Headers",
"help_text": "HTTP headers and meta keys to search to determine remote host name or IP. Add additional items to this list, such as \"HTTP_X_FORWARDED_FOR\", if behind a reverse proxy. See the \"Proxy Support\" section of the Adminstrator guide for more details.", "help_text": "HTTP headers and meta keys to search to determine remote host name or IP. Add additional items to this list, such as \"HTTP_X_FORWARDED_FOR\", if behind a reverse proxy. See the \"Proxy Support\" section of the AAP Installation guide for more details.",
"category": "System", "category": "System",
"category_slug": "system", "category_slug": "system",
"default": ["REMOTE_ADDR", "REMOTE_HOST"], "default": ["REMOTE_ADDR", "REMOTE_HOST"],