Skip to content

Commit

Permalink
added no cache headers
Browse files Browse the repository at this point in the history
  • Loading branch information
fugerit79 committed Nov 1, 2023
1 parent 3031da1 commit eb9a2cc
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [3.1.9] - 2023-10-31

- [playground-quarkus] added no cache headers

### Added

- init handler with exception suppression
Expand Down
4 changes: 4 additions & 0 deletions fj-doc-playground-quarkus/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@
<groupId>io.quarkus</groupId>
<artifactId>quarkus-arc</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-webjars-locator</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-junit5</artifactId>
Expand Down
11 changes: 11 additions & 0 deletions fj-doc-playground-quarkus/src/main/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,16 @@ quarkus:
http:
port: 8080
host: 0.0.0.0

header:
"X-Content-Type-Options":
value: nosniff
Pragma:
value: no-cache
Cache-Control:
value: no-cache

resteasy-reactive:
path: /fj-doc-playground/api


0 comments on commit eb9a2cc

Please sign in to comment.