We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e90e7f7 commit eac77cfCopy full SHA for eac77cf
.dockerignore
@@ -3,4 +3,4 @@ dist/
3
.github/
4
Dockerfile
5
.dockerignore
6
-README.md
+/*.md
docker-compose.yml
@@ -1,7 +1,6 @@
1
2
-
services:
- wildcat-dashboard-ui:
+ app:
build: .
ports:
7
- "8080:80"
docker/nginx/templates/default.conf.template
@@ -16,13 +16,18 @@ server {
16
add_header Cache-Control "no-store";
17
}
18
19
+ location ~* \.(?:json)$ {
20
+ expires 1d;
21
+ add_header Cache-Control "public";
22
+ }
23
+
24
location ~* \.(?:css|js|jpg|svg|png)$ {
- expires 30d;
25
+ expires 90d;
26
add_header Cache-Control "public";
27
28
- location ~* \.(?:json)$ {
- expires 1d;
29
+ location ~* \.(?:woff2)$ {
30
+ expires 180d;
31
32
33
0 commit comments