Merge pull request #205 from mtlynch/upstream-servers

Fix documented example value for nginx_upstreams.servers
This commit is contained in:
Jeff Geerling 2021-05-26 17:31:21 -05:00 committed by GitHub
commit 48633acdae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 5 deletions

View File

@ -82,11 +82,10 @@ nginx_upstreams: []
# - name: myapp1
# strategy: "ip_hash" # "least_conn", etc.
# keepalive: 16 # optional
# servers: {
# "srv1.example.com",
# "srv2.example.com weight=3",
# "srv3.example.com"
# }
# servers:
# - "srv1.example.com"
# - "srv2.example.com weight=3"
# - "srv3.example.com"
nginx_log_format: |-
'$remote_addr - $remote_user [$time_local] "$request" '