-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: standardize indentation in non-conforming files (#177)
* chore: standardize indentation to spaces * chore: cleanup unused settings
- Loading branch information
Showing
25 changed files
with
1,617 additions
and
1,488 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
server { | ||
http2 on; | ||
listen 8080; | ||
http2 on; | ||
listen 8080; | ||
|
||
# Support SSL via self-signed cert in development | ||
listen 8443 ssl default_server; | ||
listen [::]:443 ssl default_server; | ||
ssl_certificate /etc/ssl/certs/nginx.crt; | ||
ssl_certificate_key /etc/ssl/private/nginx.key; | ||
# Support SSL via self-signed cert in development | ||
listen 8443 ssl default_server; | ||
listen [::]:443 ssl default_server; | ||
ssl_certificate /etc/ssl/certs/nginx.crt; | ||
ssl_certificate_key /etc/ssl/private/nginx.key; | ||
|
||
rewrite ^${BACKOFFICE_BASE_PATH}($|/.*$) /$1 last; | ||
rewrite ^${BACKOFFICE_BASE_PATH}($|/.*$) /$1 last; | ||
|
||
location / { | ||
# Configuration required for Blazor WASM stand-alone app | ||
root /usr/share/nginx/html; | ||
try_files $uri $uri/ /index.html =404; | ||
location / { | ||
# Configuration required for Blazor WASM stand-alone app | ||
root /usr/share/nginx/html; | ||
try_files $uri $uri/ /index.html =404; | ||
|
||
include /etc/nginx/mime.types; | ||
default_type application/octet-stream; | ||
} | ||
include /etc/nginx/mime.types; | ||
default_type application/octet-stream; | ||
} | ||
|
||
# Serve appsettings.json with correct MIME type | ||
location /appsettings.json { | ||
root /usr/share/nginx/html; | ||
add_header Content-Type application/json; | ||
} | ||
# Serve appsettings.json with correct MIME type | ||
location /appsettings.json { | ||
root /usr/share/nginx/html; | ||
add_header Content-Type application/json; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"folders": [ | ||
{ | ||
"path": "." | ||
} | ||
], | ||
"settings": { | ||
"editor.detectIndentation": false, | ||
"editor.insertSpaces": true, | ||
"editor.indentSize": "tabSize", | ||
"editor.tabSize": 4, | ||
} | ||
} |
Oops, something went wrong.