Skip to content

Commit 1b93b95

Browse files
committed
Merge branch 'develop'
2 parents d84f4ef + 3f8f248 commit 1b93b95

File tree

9 files changed

+24
-14
lines changed

9 files changed

+24
-14
lines changed

.github/workflows/maven-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
uses: actions/checkout@v4
2929

3030
- name: Setup JDK
31-
uses: actions/setup-java@v3
31+
uses: actions/setup-java@v4
3232
with:
3333
distribution: ${{ matrix.distribution }}
3434
java-version: ${{ matrix.java }}

.github/workflows/maven-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
git config --global user.name "${{ secrets.GH_SITE_DEPLOY_NAME }}"
2626
2727
- name: Setup JDK
28-
uses: actions/setup-java@v3
28+
uses: actions/setup-java@v4
2929
with:
3030
distribution: temurin
3131
java-version: 11

changes.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@
2323
xsi:schemaLocation="http://maven.apache.org/changes/1.0.0 http://maven.apache.org/plugins/maven-changes-plugin/xsd/changes-1.0.0.xsd">
2424
<body>
2525

26+
<release version="2.0.6" date="2024-12-10">
27+
<action type="update" dev="twolfart" issue="93">
28+
Dynamically generate X-Vhost value.
29+
</action>
30+
</release>
31+
2632
<release version="2.0.4" date="2024-01-26">
2733
<action type="update" dev="sseifert" issue="91">
2834
Role aem-dispatcher-cloud: Sync with default dispatcher configuration from Adobe AEM project archetype 40 to 47.

conga-aem-definitions/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@
2525
<parent>
2626
<groupId>io.wcm.devops.conga.definitions</groupId>
2727
<artifactId>io.wcm.devops.conga.definitions.aem.parent</artifactId>
28-
<version>2.0.4</version>
28+
<version>2.0.6</version>
2929
<relativePath>../parent/pom.xml</relativePath>
3030
</parent>
3131

3232
<groupId>io.wcm.devops.conga.definitions</groupId>
3333
<artifactId>io.wcm.devops.conga.definitions.aem</artifactId>
34-
<version>2.0.4</version>
34+
<version>2.0.6</version>
3535
<packaging>config-definition</packaging>
3636

3737
<name>CONGA AEM Definitions</name>

conga-aem-definitions/src/main/templates/aem-dispatcher-ams/conf.d/available_vhosts/tenant.vhost.partials.hbs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,11 @@ CustomLog logs/vhost_{{tenant}}_access.log {{httpd.logging.accessLogFormat}}
4545
{{~#block "generalSettings"}}
4646
# Use a document root that matches the one in conf.dispatcher.d/default.farm
4747
DocumentRoot "${PUBLISH_DOCROOT}"
48-
# Add header breadcrumbs for help in troubleshooting
4948
<IfModule mod_headers.c>
50-
Header add X-Vhost "publish"
49+
# Add header breadcrumbs for help in troubleshooting
50+
{{#httpdCloudManagerConditional}}
51+
Header add X-Vhost "{{httpd.serverName}}"
52+
{{/httpdCloudManagerConditional}}
5153
# Webserver in AEM cloud service is always terminated with SSL
5254
RequestHeader set X-Forwarded-SSL "on"
5355
</IfModule>

conga-aem-definitions/src/main/templates/aem-dispatcher-cloud/conf.d/available_vhosts/tenant.vhost.partials.hbs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,11 @@ ServerAlias {{this}}
3434
DocumentRoot "${DOCROOT}"
3535
# URI dereferencing algorithm is applied at Sling's level, do not decode parameters here
3636
AllowEncodedSlashes NoDecode
37-
# Add header breadcrumbs for help in troubleshooting
3837
<IfModule mod_headers.c>
39-
Header add X-Vhost "publish"
38+
# Add header breadcrumbs for help in troubleshooting
39+
{{#httpdCloudManagerConditional}}
40+
Header add X-Vhost "{{httpd.serverName}}"
41+
{{/httpdCloudManagerConditional}}
4042
# Webserver in AEM cloud service is always terminated with SSL
4143
RequestHeader set X-Forwarded-SSL "on"
4244
</IfModule>

example/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<groupId>io.wcm.devops.conga.definitions</groupId>
3333
<artifactId>io.wcm.devops.conga.definitions.aem.example</artifactId>
3434
<packaging>config</packaging>
35-
<version>2.0.4</version>
35+
<version>2.0.6</version>
3636

3737
<name>CONGA AEM Definitions Example</name>
3838
<description>Example environment definition.</description>
@@ -43,7 +43,7 @@
4343
<dependency>
4444
<groupId>io.wcm.devops.conga.definitions</groupId>
4545
<artifactId>io.wcm.devops.conga.definitions.aem</artifactId>
46-
<version>2.0.4</version>
46+
<version>2.0.6</version>
4747
<scope>compile</scope>
4848
</dependency>
4949

parent/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@
2525
<parent>
2626
<groupId>io.wcm.devops</groupId>
2727
<artifactId>io.wcm.devops.parent_toplevel</artifactId>
28-
<version>1.4.4</version>
28+
<version>1.4.6</version>
2929
<relativePath />
3030
</parent>
3131

3232
<groupId>io.wcm.devops.conga.definitions</groupId>
3333
<artifactId>io.wcm.devops.conga.definitions.aem.parent</artifactId>
34-
<version>2.0.4</version>
34+
<version>2.0.6</version>
3535
<packaging>pom</packaging>
3636

3737
<name>CONGA AEM Definitions</name>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@
2323
<parent>
2424
<groupId>io.wcm.devops.conga.definitions</groupId>
2525
<artifactId>io.wcm.devops.conga.definitions.aem.parent</artifactId>
26-
<version>2.0.4</version>
26+
<version>2.0.6</version>
2727
<relativePath>parent/pom.xml</relativePath>
2828
</parent>
2929

3030
<groupId>io.wcm.devops.conga.definitions</groupId>
3131
<artifactId>io.wcm.devops.conga.definitions.aem.root</artifactId>
32-
<version>2.0.4</version>
32+
<version>2.0.6</version>
3333
<packaging>pom</packaging>
3434

3535
<name>CONGA AEM Definitions</name>

0 commit comments

Comments
 (0)