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
# # since this vhost is first-listed one, this setting influences other vhosts - see https://httpd.apache.org/docs/2.4/mod/core.html#limitrequestfieldsize
238
-
# LimitRequestFieldSize 32768
239
-
# DocumentRoot /var/www/localhost/htdocs
240
-
# AllowEncodedSlashes NoDecode
241
-
# <IfModule mod_headers.c>
242
-
# Header add X-Vhost "test.eaas"
243
-
# </IfModule>
244
-
# <Directory "/var/www/localhost/htdocs">
245
-
# Options Indexes FollowSymLinks
246
-
# AllowOverride None
247
-
# Require all granted
248
-
# </Directory>
249
-
#
250
-
# # SKYOPS-49434: Allow EaaS to access publish instance directly for dev and stage environments when test.eaas vhost is requested
251
-
# <IfDefine ENVIRONMENT_DEV>
252
-
# <LocationMatch "/">
253
-
# ProxyPassMatch http://${AEM_HOST}:${AEM_PORT}
254
-
# RewriteEngine Off
255
-
# </LocationMatch>
256
-
# </IfDefine>
257
-
# <IfDefine ENVIRONMENT_STAGE>
258
-
# <LocationMatch "/">
259
-
# ProxyPassMatch http://${AEM_HOST}:${AEM_PORT}
260
-
# RewriteEngine Off
261
-
# </LocationMatch>
262
-
# </IfDefine>
263
-
# # 403 Forbidden on prod
264
-
# <IfDefine ENVIRONMENT_PROD>
265
-
# <IfModule mod_rewrite.c>
266
-
# RewriteEngine on
267
-
# RewriteRule ^ - [F]
268
-
# </IfModule>
269
-
# </IfDefine>
270
-
# # possibility to make overrides after directives in this vhost
# since this vhost is first-listed one, this setting influences other vhosts - see https://httpd.apache.org/docs/2.4/mod/core.html#limitrequestfieldsize
273
+
LimitRequestFieldSize 32768
274
+
DocumentRoot /var/www/localhost/htdocs
275
+
AllowEncodedSlashes NoDecode
276
+
<IfModule mod_headers.c>
277
+
Header add X-Vhost "test.proxy"
278
+
</IfModule>
279
+
<Directory "/var/www/localhost/htdocs">
280
+
Options Indexes FollowSymLinks
281
+
AllowOverride None
282
+
Require all granted
283
+
</Directory>
284
+
285
+
# SKYOPS-49434: Allow EaaS to access publish instance directly for dev and stage environments when test.proxy vhost is requested
286
+
<IfDefine ENVIRONMENT_DEV>
287
+
<LocationMatch "/">
288
+
ProxyPassMatch http://${AEM_HOST}:${AEM_PORT}
289
+
RewriteEngine Off
290
+
</LocationMatch>
291
+
</IfDefine>
292
+
<IfDefine ENVIRONMENT_STAGE>
293
+
<LocationMatch "/">
294
+
ProxyPassMatch http://${AEM_HOST}:${AEM_PORT}
295
+
RewriteEngine Off
296
+
</LocationMatch>
297
+
</IfDefine>
298
+
# 403 Forbidden on prod
299
+
<IfDefine ENVIRONMENT_PROD>
300
+
<IfModule mod_rewrite.c>
301
+
RewriteEngine on
302
+
RewriteRule ^ - [F]
303
+
</IfModule>
304
+
</IfDefine>
305
+
# possibility to make overrides after directives in this vhost
Copy file name to clipboardExpand all lines: conga-aem-definitions/src/main/resources/aem-sdk-dispatcher/src/conf.dispatcher.d/available_farms/default.farm
+13-1Lines changed: 13 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,9 @@
9
9
#
10
10
11
11
/publishfarm {
12
+
# Dispatcher Debugging Flag
13
+
# Include X-Cache-Info response header if X-Dispatcher-Info is in request header
14
+
# /info "1"
12
15
# client headers which should be passed through to the render instances
13
16
# (feature supported since dispatcher build 2.6.3.5222)
Copy file name to clipboardExpand all lines: conga-aem-definitions/src/main/resources/aem-sdk-dispatcher/src/conf.dispatcher.d/filters/default_filters.any
Copy file name to clipboardExpand all lines: conga-aem-definitions/src/main/templates/aem-dispatcher-cloud/conf.d/available_vhosts/tenant.vhost.partials.hbs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ AllowEncodedSlashes NoDecode
47
47
# Some items cache with the wrong mime type
48
48
# Use this option to use the name to auto-detect mime types when cached improperly
49
49
ModMimeUsePathInfo On
50
-
# Use this option to avoid cache poisioning
50
+
# Use this option to avoid cache poisoning
51
51
# Sling will return /content/image.jpg as well as /content/image.jpg/ but apache can't search /content/image.jpg/ as a file
52
52
# Apache will treat that like a directory. This assures the last slash is never stored in cache
0 commit comments