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
Adds the header `X-Forwarded-Trusted-Proxy` if the request is forwarded by a trusted proxy. The value is `true` if the request is forwarded by a trusted proxy, otherwise `null`.
12203
+
12204
+
The forwarded parser detects forgery attempts and if the incoming request contains this header, it will be removed from the request.
12205
+
12206
+
The `X-Forwarded-Trusted-Proxy` header is a custom header, not part of the standard `Forwarded` header.
Adds the header `X-Forwarded-Trusted-Proxy` if the request is forwarded by a trusted proxy. The value is `true` if the request is forwarded by a trusted proxy, otherwise `null`.
13557
+
13558
+
The forwarded parser detects forgery attempts and if the incoming request contains this header, it will be removed from the request.
13559
+
13560
+
The `X-Forwarded-Trusted-Proxy` header is a custom header, not part of the standard `Forwarded` header.
The size of scheduler thread pool. This will initialize the number of worker threads in the pool.
62602
62644
62645
+
It's important to bear in mind that Quartz threads are not used to execute scheduled methods, instead the regular Quarkus thread pool is used by default. See also `quarkus.quartz.run-blocking-scheduled-method-on-quartz-thread`.
The size of scheduler thread pool. This will initialize the number of worker threads in the pool.
228
228
229
+
It's important to bear in mind that Quartz threads are not used to execute scheduled methods, instead the regular Quarkus thread pool is used by default. See also `quarkus.quartz.run-blocking-scheduled-method-on-quartz-thread`.
The size of scheduler thread pool. This will initialize the number of worker threads in the pool.
228
228
229
+
It's important to bear in mind that Quartz threads are not used to execute scheduled methods, instead the regular Quarkus thread pool is used by default. See also `quarkus.quartz.run-blocking-scheduled-method-on-quartz-thread`.
Adds the header `X-Forwarded-Trusted-Proxy` if the request is forwarded by a trusted proxy. The value is `true` if the request is forwarded by a trusted proxy, otherwise `null`.
2955
+
2956
+
The forwarded parser detects forgery attempts and if the incoming request contains this header, it will be removed from the request.
2957
+
2958
+
The `X-Forwarded-Trusted-Proxy` header is a custom header, not part of the standard `Forwarded` header.
Adds the header `X-Forwarded-Trusted-Proxy` if the request is forwarded by a trusted proxy. The value is `true` if the request is forwarded by a trusted proxy, otherwise `null`.
1274
+
1275
+
The forwarded parser detects forgery attempts and if the incoming request contains this header, it will be removed from the request.
1276
+
1277
+
The `X-Forwarded-Trusted-Proxy` header is a custom header, not part of the standard `Forwarded` header.
Copy file name to clipboardExpand all lines: _guides/deploying-to-google-cloud.adoc
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,14 +60,14 @@ Then, you will need to create a `src/main/appengine/app.yaml` file, let's keep i
60
60
61
61
[source, yaml]
62
62
----
63
-
runtime: java11
63
+
runtime: java21
64
64
----
65
65
66
66
This will create a default service for your App Engine application.
67
67
68
68
[NOTE]
69
69
====
70
-
You can also use the new Java 17 runtime by defining `runtime: java17` instead.
70
+
You can also use another Java runtime supported by App Engine, for example, for Java 17, use `runtime: java17` instead.
71
71
====
72
72
73
73
App Engine Standard does not support the default Quarkus' specific packaging layout, therefore, you must set up your application to be packaged as an uber-jar via your `application.properties` file:
@@ -114,7 +114,7 @@ First, add the plugin to your `pom.xml`:
0 commit comments