Update indent for nginx config file (#4260)

This commit is contained in:
Bruno Alla 2023-04-05 21:32:05 +01:00 committed by GitHub
parent 782cee3756
commit a607284e1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -22,6 +22,6 @@ trim_trailing_whitespace = false
[Makefile] [Makefile]
indent_style = tab indent_style = tab
[nginx.conf] [default.conf]
indent_style = space indent_style = space
indent_size = 2 indent_size = 2

View File

@ -1,7 +1,7 @@
server { server {
listen 80; listen 80;
server_name localhost; server_name localhost;
location /media/ { location /media/ {
alias /usr/share/nginx/media/; alias /usr/share/nginx/media/;
} }
} }