Skip to content

Commit 6e2f5e0

Browse files
committed
Fix default port in docs
Fix #135.
1 parent 2be7986 commit 6e2f5e0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

DependencyInjection/Configuration.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ private function addProxyClientSection(ArrayNodeDefinition $rootNode)
274274
->isRequired()
275275
->requiresAtLeastOneElement()
276276
->prototype('scalar')->end()
277-
->info('Addresses of the hosts varnish is running on. May be hostname or ip, and with :port if not the default port 6081.')
277+
->info('Addresses of the hosts Varnish is running on. May be hostname or ip, and with :port if not the default port 80.')
278278
->end()
279279
->scalarNode('base_url')
280280
->defaultNull()
@@ -296,7 +296,7 @@ private function addProxyClientSection(ArrayNodeDefinition $rootNode)
296296
->isRequired()
297297
->requiresAtLeastOneElement()
298298
->prototype('scalar')->end()
299-
->info('Addresses of the hosts varnish is running on. May be hostname or ip, and with :port if not the default port 6081.')
299+
->info('Addresses of the hosts Nginx is running on. May be hostname or ip, and with :port if not the default port 80.')
300300
->end()
301301
->scalarNode('base_url')
302302
->defaultNull()
@@ -308,7 +308,7 @@ private function addProxyClientSection(ArrayNodeDefinition $rootNode)
308308
->end()
309309
->scalarNode('purge_location')
310310
->defaultValue('')
311-
->info('Path to trigger the purge on nginx for different location purge.')
311+
->info('Path to trigger the purge on Nginx for different location purge.')
312312
->end()
313313
->end()
314314
->end()

Resources/doc/reference/configuration/proxy-client.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ servers
2626

2727
Comma-separated list of IP addresses or host names of your
2828
caching proxy servers. The port those servers will be contacted
29-
defaults to 6081, you can specify a different port with ``:<port>``.
29+
defaults to 80; you can specify a different port with ``:<port>``.
3030

3131
base_url
3232
""""""""

0 commit comments

Comments
 (0)