Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions base/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ quarkus.web-bundler.bundle.community-app.key=main
quarkus.http.enable-compression=true
quarkus.resteasy-reactive.path=/api
quarkus.ssl.native=true
quarkus.http.cors=true
quarkus.http.cors.origins=/.*/

quarkus.http.filter.others.header.Cache-Control=no-cache
quarkus.http.filter.others.matches=/.*
Expand All @@ -39,10 +41,6 @@ quarkus.http.filter.api.header."X-Content-Type-Options"=nosniff
quarkus.http.filter.api.header."X-Frame-Options"=deny
quarkus.http.filter.api.header."Strict-Transport-Security"=max-age=31536000; includeSubDomains
quarkus.http.filter.api.header."Content-Security-Policy"=default-src 'none';
quarkus.http.filter.api.header."Access-Control-Allow-Origin"=*
quarkus.http.filter.api.header."Access-Control-Allow-Headers"=*
quarkus.http.filter.api.header."Access-Control-Allow-Methods"=GET,POST,OPTIONS,HEAD
quarkus.http.filter.api.header."Access-Control-Allow-Credentials"=false
quarkus.http.filter.api.matches=/api/.+
quarkus.http.filter.api.order=1

Expand Down