Skip to content

Commit

Permalink
Bonus: Configurazione Router in TLS/Passthrough
Browse files Browse the repository at this point in the history
  • Loading branch information
amusarra committed Apr 20, 2024
1 parent 92fb20e commit f8cdd26
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,26 @@ quarkus.http.ssl.certificate.key-store-file-type=JKS

##
## This section configure the OpenShift extension
## For more info see https://quarkus.io/guides/deploying-to-openshift
##

# If true, the service will be exposed outside of the cluster
# and will be assigned a route.
# If false, the service will only be accessible within the cluster (default)
# Environment variable: QUARKUS_OPENSHIFT_ROUTE_EXPOSE
quarkus.openshift.route.expose=true

# The target named port. If not provided, it will be deducted
# from the Service resource ports. Options are: "http" and "https".
quarkus.openshift.route.target-port=https

## Route TLS configuration:
# The termination type of the route. Options are: "edge",
# "reencrypt", and "passthrough".
quarkus.openshift.route.tls.termination=passthrough

# The desired behavior for insecure connections to a route.
quarkus.openshift.route.tls.insecure-edge-termination-policy=None

# The name of the ConfigMap that contains the AMQP host, port
quarkus.openshift.env.configmaps=amqp-hostname-port

Expand Down

0 comments on commit f8cdd26

Please sign in to comment.