nginx icon indicating copy to clipboard operation
nginx copied to clipboard

Locations should be an array

Open axos88 opened this issue 11 years ago • 2 comments

!!! BREAKING CHANGE

Locations and try_files are made into an array. Configuration files will need to be adjusted.

    locations:
      - name: /
        try_files:
          - $uri
          - $uri/
          - /index.html
      - name: /images/
        try_files:
          - $uri
          - $uri/
          - /index.html

axos88 avatar Nov 03 '14 15:11 axos88

Hmm... In the end I think not only try_files should be treated separately, but almost any param given to locations - if an array - should be joined using spaces.

axos88 avatar Nov 04 '14 15:11 axos88

What do you think?

axos88 avatar Nov 04 '14 15:11 axos88