You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: working-with-response/serve-static-files/index.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ Web application needs to serve static files that seldom change during
9
9
request response cycle such as JavaScript codes, cascading stylesheet files and also fonts and images.
10
10
11
11
## 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.
13
13
14
14
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.
0 commit comments