Skip to content

Commit 13b8b1a

Browse files
authored
fix typo error
1 parent b227533 commit 13b8b1a

File tree

1 file changed

+1
-1
lines changed
  • working-with-response/serve-static-files

1 file changed

+1
-1
lines changed

working-with-response/serve-static-files/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Web application needs to serve static files that seldom change during
99
request response cycle such as JavaScript codes, cascading stylesheet files and also fonts and images.
1010

1111
## Serve static files with reverse proxy server
12-
If your application is running behind reverse proxy server, easiest way to serve static files is to let reverse proxy server does it for you. Thus your appplication can focus on problem it supposes to solve.
12+
If your application is running behind reverse proxy server, easiest way to serve static files is to let reverse proxy server does it for you. Thus your application can focus on problem it supposes to solve.
1313

1414
For example if you use Nginx, you can use `try_files` which will try to serve files if it exists. If it does not then let your application handles it.
1515

0 commit comments

Comments
 (0)