-
Notifications
You must be signed in to change notification settings - Fork 3.6k
/
portal.properties
12283 lines (11080 loc) · 472 KB
/
portal.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
##
## Properties Override
##
#
# Specify where to get the overridden properties. Updates should not be made
# on portal.properties or on portal-bundle.properties, but in
# portal-ext.properties.
#
# The default read order is: portal.properties, portal-bundle.properties,
# portal-ext.properties, and then portal-setup-wizard.properties.
#
# Env: LIFERAY_INCLUDE_MINUS_AND_MINUS_OVERRIDE
#
include-and-override=portal-bundle.properties
include-and-override=${liferay.home}/portal-bundle.properties
include-and-override=portal-ext.properties
include-and-override=${liferay.home}/portal-ext.properties
include-and-override=portal-setup-wizard.properties
include-and-override=${liferay.home}/portal-setup-wizard.properties
#
# Additional property files can be used by setting the "external-properties"
# system property.
#
# A common use case is to keep legacy property values when upgrading to
# newer versions of Liferay. To enable:
#
# java ... -Dexternal-properties=portal-legacy-5.1.properties
#
# The read order will now be: portal.properties, then portal-ext.properties,
# and then portal-legacy-5.1.properties.
#
# Env: LIFERAY_INCLUDE_MINUS_AND_MINUS_OVERRIDE
#
include-and-override=${external-properties}
include-and-override=${liferay.home}/${external-properties}
##
## Liferay Home
##
#
# Specify the Liferay home directory.
#
# Env: LIFERAY_LIFERAY_PERIOD_HOME
#
liferay.home=${resource.repositories.root}
#
# This property is available for backwards compatibility. Please set the
# property "liferay.home" instead.
#
# Env: LIFERAY_RESOURCE_PERIOD_REPOSITORIES_PERIOD_ROOT
#
resource.repositories.root=${default.liferay.home}
##
## Portal Context
##
#
# Set the application server's protocol. Lucene will use it to load the
# index from the cluster when the hostname and port are not detected on the
# first request. Note that this property refers to the application server's
# protocol, and not the web server's as specified in the property
# "web.server.protocol".
#
# Env: LIFERAY_PORTAL_PERIOD_INSTANCE_PERIOD_PROTOCOL
#
portal.instance.protocol=
#portal.instance.protocol=http
#portal.instance.protocol=https
#
# Set the application server's hostname and port for the protocol specified
# in the property "portal.instance.protocol". Lucene will use it to load the
# index from the cluster when the hostname and port are not detected on the
# first request. Note that this property must be used with the property
# "portal.instance.protocol" and it refers to the application server's
# hostname and port, not the web server's port as specified in the
# properties "web.server.http.port" and "web.server.https.port".
#
# Env: LIFERAY_PORTAL_PERIOD_INSTANCE_PERIOD_INET_PERIOD_SOCKET_PERIOD_ADDRESS
#
portal.instance.inet.socket.address=
#portal.instance.inet.socket.address=localhost:8080
#portal.instance.inet.socket.address=localhost:8443
#
# Set this property if the application server is served behind a proxy and
# a prefix needs to be added to the portal servlet context path. This prefix
# will also be added to static resources served by layout templates,
# portlets, and themes.
#
# Env: LIFERAY_PORTAL_PERIOD_PROXY_PERIOD_PATH
#
portal.proxy.path=
##
## Schema
##
#
# Set this to true to automatically create tables and populate with default
# data if the database is empty.
#
# Env: LIFERAY_SCHEMA_PERIOD_RUN_PERIOD_ENABLED
#
schema.run.enabled=true
#
# Set this to true to automatically upgrade the database when a module's
# build number has been increased since the last deployment.
#
# Env: LIFERAY_SCHEMA_PERIOD_MODULE_PERIOD_BUILD_PERIOD_AUTO_PERIOD_UPGRADE
#
schema.module.build.auto.upgrade=false
##
## Upgrade
##
#
# Set this to true to execute the upgrade process when the portal starts and
# modules are activated.
#
# Env: LIFERAY_UPGRADE_PERIOD_DATABASE_PERIOD_AUTO_PERIOD_RUN
#
upgrade.database.auto.run=false
#
# Set this to true to disable database transaction management during
# upgrades. This forces autocommit, which will speed up the upgrade process.
#
# Env: LIFERAY_UPGRADE_PERIOD_DATABASE_PERIOD_TRANSACTIONS_PERIOD_DISABLED
#
upgrade.database.transactions.disabled=true
##
## Verify
##
#
# Input a list of comma delimited class names that implement
# com.liferay.portal.verify.VerifyProcess. These classes will run on
# startup to verify and fix any integrity problems found in the database.
# Please be aware that this may make modifications directly to the database.
#
# Env: LIFERAY_VERIFY_PERIOD_PROCESSES
#
verify.processes=com.liferay.portal.verify.VerifyProcessSuite
#
# Specify the frequency for verifying the integrity of the database.
#
# Constants in VerifyProcess:
# public static final int ALWAYS = -1;
# public static final int NEVER = 0;
# public static final int ONCE = 1;
#
# Env: LIFERAY_VERIFY_PERIOD_FREQUENCY
#
verify.frequency=1
#
# Set this to true to disable database transaction management during
# verification. This forces autocommit, which will speed up the verify
# process.
#
# Env: LIFERAY_VERIFY_PERIOD_DATABASE_PERIOD_TRANSACTIONS_PERIOD_DISABLED
#
verify.database.transactions.disabled=true
#
# Set this to true to disable patch level checking on portal-impl and
# portal-kernel JAR files. This is not recommended as a mixed patch level
# can cause unexpected behavior.
#
# Env: LIFERAY_VERIFY_PERIOD_PATCH_PERIOD_LEVELS_PERIOD_DISABLED
#
verify.patch.levels.disabled=false
#
# Configure this threshold to indicate when to execute certain
# com.liferay.portal.verify.VerifyProcess tasks concurrently. Each
# VerifyProcess implementation governs what it may concurrently execute.
#
# Env: LIFERAY_VERIFY_PERIOD_PROCESS_PERIOD_CONCURRENCY_PERIOD_THRESHOLD
#
verify.process.concurrency.threshold=5
##
## Auto Deploy
##
#
# Input a list of comma delimited class names that implement
# com.liferay.portal.kernel.deploy.auto.AutoDeployListener. These classes
# are used to process the auto deployment of WARs.
#
# Env: LIFERAY_AUTO_PERIOD_DEPLOY_PERIOD_LISTENERS
#
auto.deploy.listeners=\
com.liferay.portal.deploy.auto.HookAutoDeployListener,\
com.liferay.portal.deploy.auto.LayoutTemplateAutoDeployListener,\
com.liferay.portal.deploy.auto.ModuleAutoDeployListener,\
com.liferay.portal.deploy.auto.PortletAutoDeployListener,\
com.liferay.portal.deploy.auto.ThemeAutoDeployListener,\
com.liferay.portal.deploy.auto.WebAutoDeployListener
#
# Set this to true to enable auto deploy of layout templates, portlets, and
# themes.
#
# Env: LIFERAY_AUTO_PERIOD_DEPLOY_PERIOD_ENABLED
#
auto.deploy.enabled=true
#
# Set the directory to scan for layout templates, portlets, and themes to
# auto deploy.
#
# Env: LIFERAY_AUTO_PERIOD_DEPLOY_PERIOD_DEPLOY_PERIOD_DIR
#
auto.deploy.deploy.dir=${liferay.home}/deploy
#
# Set the directory where auto deployed WARs are copied to. The application
# server or servlet container must know to listen on that directory.
# Different containers have different hot deploy paths. For example, Tomcat
# listens on "${catalina.base}/webapps" whereas JBoss listens on
# "${jboss.home.dir}/deploy". Set a blank directory to automatically use the
# application server specific directory.
#
# Env: LIFERAY_AUTO_PERIOD_DEPLOY_PERIOD_DEFAULT_PERIOD_DEST_PERIOD_DIR
# Env: LIFERAY_AUTO_PERIOD_DEPLOY_PERIOD_DEST_PERIOD_DIR
# Env: LIFERAY_AUTO_PERIOD_DEPLOY_PERIOD_JBOSS_PERIOD_DEST_PERIOD_DIR
# Env: LIFERAY_AUTO_PERIOD_DEPLOY_PERIOD_JBOSS_PERIOD_DEST_PERIOD_DIR_OPENBRACKET__NUMBER5__CLOSEBRACKET_
# Env: LIFERAY_AUTO_PERIOD_DEPLOY_PERIOD_TOMCAT_PERIOD_DEST_PERIOD_DIR
# Env: LIFERAY_AUTO_PERIOD_DEPLOY_PERIOD_WEBLOGIC_PERIOD_DEST_PERIOD_DIR
# Env: LIFERAY_AUTO_PERIOD_DEPLOY_PERIOD_WEBSPHERE_PERIOD_DEST_PERIOD_DIR
# Env: LIFERAY_AUTO_PERIOD_DEPLOY_PERIOD_WILDFLY_PERIOD_DEST_PERIOD_DIR
#
auto.deploy.dest.dir=
auto.deploy.default.dest.dir=../webapps
auto.deploy.jboss.dest.dir=${jboss.home.dir}/standalone/deployments
auto.deploy.jboss.dest.dir[5]=${jboss.server.home.dir}/deploy
auto.deploy.tomcat.dest.dir=${catalina.base}/webapps
auto.deploy.weblogic.dest.dir=${env.DOMAIN_HOME}/autodeploy
auto.deploy.websphere.dest.dir=${env.USER_INSTALL_ROOT}/wsadmin-deploy
auto.deploy.wildfly.dest.dir=${jboss.home.dir}/standalone/deployments
#
# Set the interval in milliseconds on how often to scan the directory for
# changes.
#
# Env: LIFERAY_AUTO_PERIOD_DEPLOY_PERIOD_INTERVAL
#
auto.deploy.interval=3000
#
# Set this to true if deployed WARs are unpacked. Set this to false if your
# application server has concurrency issues with deploying large WARs.
#
# Env: LIFERAY_AUTO_PERIOD_DEPLOY_PERIOD_UNPACK_PERIOD_WAR
#
auto.deploy.unpack.war=true
#
# Set this to true if plugins should automatically copy Commons Logging.
#
# Env: LIFERAY_AUTO_PERIOD_DEPLOY_PERIOD_COPY_PERIOD_COMMONS_PERIOD_LOGGING
#
auto.deploy.copy.commons.logging=true
#
# Set this to true if plugins should automatically copy Log4j.
#
# Env: LIFERAY_AUTO_PERIOD_DEPLOY_PERIOD_COPY_PERIOD_LOG_NUMBER4_J
#
auto.deploy.copy.log4j=true
#
# Set this to true if you want the deployer to rename portlet.xml to
# portlet-custom.xml. This is only needed when deploying the portal on
# WebSphere 6.1.x with a version before 6.1.0.7 because WebSphere's portlet
# container will try to process a portlet at the same time that Liferay is
# trying to process a portlet.
#
# Env: LIFERAY_AUTO_PERIOD_DEPLOY_PERIOD_CUSTOM_PERIOD_PORTLET_PERIOD_XML
#
auto.deploy.custom.portlet.xml=false
#
# Set this to 1 if you are using JBoss' PrefixDeploymentSorter. This will
# append a 1 in front of your WAR name. For example, if you are deploying a
# portlet called test-portlet.war, it will deploy it to 1test-portlet.war.
# JBoss now knows to load this portlet after the other WARs have loaded.
# However, it will remove the 1 from the context path.
#
# Modify /server/default/conf/jboss-service.xml.
# See org.jboss.deployment.scanner.PrefixDeploymentSorter.
#
# Env: LIFERAY_AUTO_PERIOD_DEPLOY_PERIOD_JBOSS_PERIOD_PREFIX
#
auto.deploy.jboss.prefix=
#
# Set the path to Tomcat's configuration directory. This property is used to
# auto deploy exploded WARs. Tomcat context XML files found in the auto
# deploy directory will be copied to Tomcat's configuration directory. The
# context XML file must have a docBase attribute that points to a valid WAR
# directory.
#
# Env: LIFERAY_AUTO_PERIOD_DEPLOY_PERIOD_TOMCAT_PERIOD_CONF_PERIOD_DIR
#
auto.deploy.tomcat.conf.dir=../conf/Catalina/localhost
#
# Set the path to Tomcat's global class loader. This property is only used
# by Tomcat in a standalone environment.
#
# Env: LIFERAY_AUTO_PERIOD_DEPLOY_PERIOD_TOMCAT_PERIOD_LIB_PERIOD_DIR
#
auto.deploy.tomcat.lib.dir=../common/lib/ext
#
# Set the options used when calling the AdminApp.install command.
#
# See http://pic.dhe.ibm.com/infocenter/wasinfo/v8r0/topic/com.ibm.websphere.express.doc/info/exp/ae/rxml_adminapp.html#rxml_adminapp__cmd9
# for more information.
#
# Env: LIFERAY_AUTO_PERIOD_DEPLOY_PERIOD_WEBSPHERE_PERIOD_WSADMIN_PERIOD_APP_PERIOD_MANAGER_PERIOD_INSTALL_PERIOD_OPTIONS
#
auto.deploy.websphere.wsadmin.app.manager.install.options=-appname ${auto.deploy.websphere.wsadmin.app.name} -contextroot /${plugin.servlet.context.name} -usedefaultbindings
#
# Set the options used when calling the AdminApp.list command.
#
# See http://pic.dhe.ibm.com/infocenter/wasinfo/v8r0/topic/com.ibm.websphere.express.doc/info/exp/ae/rxml_adminapp.html#rxml_adminapp__cmd9
# for more information.
#
# Env: LIFERAY_AUTO_PERIOD_DEPLOY_PERIOD_WEBSPHERE_PERIOD_WSADMIN_PERIOD_APP_PERIOD_MANAGER_PERIOD_LIST_PERIOD_OPTIONS
#
auto.deploy.websphere.wsadmin.app.manager.list.options=
#
# Set the options used when calling the AdminApp.update command.
#
# See http://pic.dhe.ibm.com/infocenter/wasinfo/v8r0/topic/com.ibm.websphere.express.doc/info/exp/ae/rxml_adminapp.html#rxml_adminapp__cmd9
# for more information.
#
# Env: LIFERAY_AUTO_PERIOD_DEPLOY_PERIOD_WEBSPHERE_PERIOD_WSADMIN_PERIOD_APP_PERIOD_MANAGER_PERIOD_UPDATE_PERIOD_OPTIONS
#
auto.deploy.websphere.wsadmin.app.manager.update.options=-contents ${auto.deploy.dest.dir}/${plugin.servlet.context.name}.war -contextroot /${plugin.servlet.context.name} -operation update -usedefaultbindings
#
# WebSphere 6 and 7 do not support the ability to hot deploy a WAR. The
# portal will attempt to use the wsadmin script to install a hot deployed
# plugin at runtime if this property is set. The wsadmin script uses this
# property to query the WebSphere application manager. Set this property
# to a blank value to disable this feature.
#
# Env: LIFERAY_AUTO_PERIOD_DEPLOY_PERIOD_WEBSPHERE_PERIOD_WSADMIN_PERIOD_APP_PERIOD_MANAGER_PERIOD_QUERY
#
#auto.deploy.websphere.wsadmin.app.manager.query=
auto.deploy.websphere.wsadmin.app.manager.query=type=ApplicationManager,process=server1,*
#
# Set the suffix to be added to the plugin servlet context name in order to
# identify the WebSphere process it is deployed to. Leave it blank to use
# the plugin servlet context name only.
#
# Env: LIFERAY_AUTO_PERIOD_DEPLOY_PERIOD_WEBSPHERE_PERIOD_WSADMIN_PERIOD_APP_PERIOD_NAME_PERIOD_SUFFIX
#
auto.deploy.websphere.wsadmin.app.name.suffix=
#
# Set the properties file name to use when invoking the wsadmin command.
# Configure this property to change the behavior of the wsadmin command,
# such as connection port or protocol.
#
# Env: LIFERAY_AUTO_PERIOD_DEPLOY_PERIOD_WEBSPHERE_PERIOD_WSADMIN_PERIOD_PROPERTIES_PERIOD_FILE_PERIOD_NAME
#
auto.deploy.websphere.wsadmin.properties.file.name=
##
## Hot Deploy
##
#
# Env: LIFERAY_HOT_PERIOD_DEPLOY_PERIOD_DEPENDENCY_PERIOD_MANAGEMENT_PERIOD_ENABLED
#
hot.deploy.dependency.management.enabled=true
#
# Input a list of comma delimited class names that implement
# com.liferay.portal.kernel.deploy.hot.HotDeployListener. These classes are
# used to process the deployment and undeployment of WARs at runtime.
#
# The listeners are invoked in the order defined by this property.
# PluginPackageHotDeployListener must always be invoked first.
# SpringHotDeployListener must always be invoked before
# ServletContextListenerHotDeployListener. MessagingHotDeployListener must
# always be invoked last.
#
# Env: LIFERAY_HOT_PERIOD_DEPLOY_PERIOD_LISTENERS
#
hot.deploy.listeners=\
com.liferay.portal.deploy.hot.PluginPackageHotDeployListener,\
\
com.liferay.portal.deploy.hot.ServletContextListenerHotDeployListener,\
\
com.liferay.portal.deploy.hot.ExtHotDeployListener,\
com.liferay.portal.deploy.hot.HookHotDeployListener,\
com.liferay.portal.deploy.hot.JSONWebServiceHotDeployListener,\
com.liferay.portal.deploy.hot.LayoutTemplateHotDeployListener,\
com.liferay.portal.deploy.hot.PortletHotDeployListener,\
com.liferay.portal.deploy.hot.SocialHotDeployListener,\
com.liferay.portal.deploy.hot.ThemeHotDeployListener,\
com.liferay.portal.deploy.hot.ThemeLoaderHotDeployListener,\
\
com.liferay.portal.deploy.hot.OSGiHotDeployListener,\
\
com.liferay.portal.deploy.hot.MessagingHotDeployListener
##
## Hot Undeploy
##
#
# Set this to true to enable undeploying plugins.
#
# Env: LIFERAY_HOT_PERIOD_UNDEPLOY_PERIOD_ENABLED
#
hot.undeploy.enabled=true
#
# Set the undeploy interval in milliseconds on how long to wait for the
# undeploy process to finish.
#
# Env: LIFERAY_HOT_PERIOD_UNDEPLOY_PERIOD_INTERVAL
#
hot.undeploy.interval=0
#
# Set this to true to undeploy a plugin before deploying a new version. This
# property will only be used if the property "hot.undeploy.enabled" is set
# to true.
#
# Env: LIFERAY_HOT_PERIOD_UNDEPLOY_PERIOD_ON_PERIOD_REDEPLOY
#
hot.undeploy.on.redeploy=false
##
## Plugin
##
#
# Input a list of comma delimited supported plugin types.
#
# Env: LIFERAY_PLUGIN_PERIOD_TYPES
#
plugin.types=\
portlet,\
theme,\
layout-template,\
hook,\
web
#
# Input a list of Liferay plugin repositories separated by \n characters.
#
# Env: LIFERAY_PLUGIN_PERIOD_REPOSITORIES_PERIOD_TRUSTED
# Env: LIFERAY_PLUGIN_PERIOD_REPOSITORIES_PERIOD_UNTRUSTED
#
plugin.repositories.trusted=
plugin.repositories.untrusted=
#
# Set this property to false to avoid receiving on screen notifications
# when there is a new version of an installed plugin.
#
# Env: LIFERAY_PLUGIN_PERIOD_NOTIFICATIONS_PERIOD_ENABLED
#
plugin.notifications.enabled=false
#
# Input a list of plugin packages IDs separated by \n characters.
# Administrators won't be notified when a new version of these plugins are
# available. The IDs are of the form groupId/artifactId. You can also end
# the ID with an asterisk to match any ID that starts with the previous
# character.
#
# Env: LIFERAY_PLUGIN_PERIOD_NOTIFICATIONS_PERIOD_PACKAGES_PERIOD_IGNORED
#
#plugin.notifications.packages.ignored=liferay/sample-jsp-portlet
##
## Portlet
##
#
# Set this property to set the default virtual path for all hot deployed
# portlets. See liferay-portlet-app_7_1_0.dtd and the virtual-path element
# for more information.
#
# Env: LIFERAY_PORTLET_PERIOD_VIRTUAL_PERIOD_PATH
#
portlet.virtual.path=
#
# Set this property to true to validate portlet.xml against the portlet
# schema.
#
# Env: LIFERAY_PORTLET_PERIOD_XML_PERIOD_VALIDATE
#
portlet.xml.validate=true
#
# Portlets that have configured liferay-portlet.xml with the element
# "add-default-resource" set to true will allow those portlets to be
# dynamically added to any page by any user. This is useful
# (and necessary) for some portlets that need to be dynamically added to a
# page, but it can also pose a security risk because it also allows any user
# to do it.
#
# Set this property to true to add a security check around this behavior.
# If set to true, then portlets can only be dynamically added to a page if
# it contains a proper security token. This security token is automatically
# passed when using a portlet URL from one portlet to another portlet.
#
# Modify the property "portlet.add.default.resource.check.whitelist" to
# whitelist certain portlets from this security check.
#
# The security check utilizes the implementation set in the property
# "auth.token.impl".
#
# Env: LIFERAY_PORTLET_PERIOD_ADD_PERIOD_DEFAULT_PERIOD_RESOURCE_PERIOD_CHECK_PERIOD_ENABLED
#
portlet.add.default.resource.check.enabled=true
#
# Set a list of comma delimited portlet IDs that will bypass the security
# check set in the property "portlet.add.default.resource.check.enabled".
#
# Env: LIFERAY_PORTLET_PERIOD_ADD_PERIOD_DEFAULT_PERIOD_RESOURCE_PERIOD_CHECK_PERIOD_WHITELIST
#
portlet.add.default.resource.check.whitelist=\
com_liferay_calendar_web_portlet_CalendarPortlet,\
com_liferay_login_web_portlet_FastLoginPortlet,\
com_liferay_login_web_portlet_LoginPortlet,\
com_liferay_portlet_configuration_css_web_portlet_PortletConfigurationCSSPortlet,\
com_liferay_portlet_configuration_web_portlet_PortletConfigurationPortlet,\
com_liferay_product_navigation_simulation_web_portlet_SimulationPortlet,\
com_liferay_staging_bar_web_portlet_StagingBarPortlet
#
# Input a list of comma delimited struts actions that will bypass the
# security check set in the property
# "portlet.add.default.resource.check.enabled".
#
# Env: LIFERAY_PORTLET_PERIOD_ADD_PERIOD_DEFAULT_PERIOD_RESOURCE_PERIOD_CHECK_PERIOD_WHITELIST_PERIOD_ACTIONS
#
portlet.add.default.resource.check.whitelist.actions=
#
# Set a list of comma delimited portlet IDs that will bypass the
# checks at first login (pages like terms of use, update password,
# password reminder query, etc.).
#
# Such a portlet can also be embedded in a theme.
#
# Keep in mind that this can be risky, because an attacker can issue POST
# requests on these portlets, even when there is no portlet embedded in a
# theme.
#
# Env: LIFERAY_PORTLET_PERIOD_INTERRUPTED_PERIOD_REQUEST_PERIOD_WHITELIST
#
portlet.interrupted.request.whitelist=
#
# Input a list of comma delimited struts actions that will bypass the
# checks at first login (pages like terms of use, update password,
# password reminder query, etc.).
#
# Env: LIFERAY_PORTLET_PERIOD_INTERRUPTED_PERIOD_REQUEST_PERIOD_WHITELIST_PERIOD_ACTIONS
#
portlet.interrupted.request.whitelist.actions=
#
# Input a regular expression to ban paths that cannot be used to serve
# resources in portlets.
#
# Env: LIFERAY_PORTLET_PERIOD_RESOURCE_PERIOD_ID_PERIOD_BANNED_PERIOD_PATHS_PERIOD_REGEXP
#
portlet.resource.id.banned.paths.regexp=.*[\\\\/](?:META-INF|WEB-INF)[\\\\/].*
#
# Set this property to true to enable portlet session replication. This is
# only needed when session replication is enabled on the application server.
#
# Env: LIFERAY_PORTLET_PERIOD_SESSION_PERIOD_REPLICATE_PERIOD_ENABLED
#
portlet.session.replicate.enabled=false
##
## Portlet Config
##
#
# Set this property to true to show the portlet ID as a subtitle of the
# portlet configuration modal.
#
# Env: LIFERAY_PORTLET_PERIOD_CONFIG_PERIOD_SHOW_PERIOD_PORTLET_PERIOD_ID
#
portlet.config.show.portlet.id=false
#
# Input a list of portlet resources that will be loaded.
#
# Env: LIFERAY_PORTLET_PERIOD_CONFIGS
#
portlet.configs=\
/WEB-INF/portlet-custom.xml,\
/WEB-INF/portlet-ext.xml,\
/WEB-INF/liferay-portlet.xml,\
/WEB-INF/liferay-portlet-ext.xml,\
/WEB-INF/web.xml
##
## Portlet Container
##
#
# Set this property to true to restrict portlet communication via request
# attributes. See the property "layout.parallel.render.enable" on how that
# property affects this property.
#
# Env: LIFERAY_PORTLET_PERIOD_CONTAINER_PERIOD_RESTRICT
#
portlet.container.restrict=true
##
## Portlet Coordination
##
#
# This property controls how cross layout portlet URLs are invoked. When set
# to "render", only render URLs will be allowed invocation across
# different layouts. When set to "all", all portlet URL types will be
# allowed invocation.
#
# Env: LIFERAY_PORTLET_PERIOD_CROSS_PERIOD_LAYOUT_PERIOD_INVOCATION_PERIOD_MODE
#
portlet.cross.layout.invocation.mode=render
#
# Set this property to specify how events are distributed. If the value is
# "layout-set", then events will be distributed to all portlets contained in
# a layout set. If the value is "layout", then events will be distributed to
# all portlets that are present in a layout.
#
# Env: LIFERAY_PORTLET_PERIOD_EVENT_PERIOD_DISTRIBUTION
#
portlet.event.distribution=layout
#
# Set this property to specify how public render parameters are distributed.
# If the value is "layout-set", then public render parameters will be
# distributed to all portlets contained in a layout set. This will only work
# correctly if the property "layout.default.p_l_reset" is set to false. If
# the value is "layout", then public render parameters will be distributed
# to all portlets that are present in a layout.
#
# Env: LIFERAY_PORTLET_PERIOD_PUBLIC_PERIOD_RENDER_PERIOD_PARAMETER_PERIOD_DISTRIBUTION
#
portlet.public.render.parameter.distribution=layout
###
### Portlet Dependencies
###
#
# Set the URN for portlet CSS dependencies added via portlet.xml,
# @Dependency, or HeaderResponse.addDependency. If specified, CSS
# dependencies will have the following URL pattern:
#
# {portlet.dependency.css.urn}/scope/version/name.css
#
# If not specified, CSS dependencies will have the following URL pattern:
#
# http://{cdn.host.http}/css/scope/version/name.css (unsecure)
#
# https://{cdn.host.https}/css/scope/version/name.css (secure)
#
# If "cdn.host.http" and "cdn.host.http" are not specified, CSS dependencies
# will have the following URL pattern:
#
# http://localhost:8080/css/scope/version/name.css
#
# Generation of portlet dependency markup can be customized with an OSGi
# module that provides a service of the following type:
# com.liferay.portal.kernel.model.portlet.PortletDependencyFactory
#
# Generation of portlet dependency URLs can be customized with an OSGi
# module that provides a service of the following type:
# com.liferay.portal.url.builder.AbsolutePortalURLBuilderFactory
#
# Env: LIFERAY_PORTLET_PERIOD_DEPENDENCY_PERIOD_CSS_PERIOD_URN
#
portlet.dependency.css.urn=
#
# Set the URN for portlet JavaScript dependencies added via portlet.xml,
# @Dependency, or HeaderResponse.addDependency. If specified, JavaScript
# dependencies will have the following URL pattern:
#
# {portlet.dependency.js.urn}/scope/version/name.js
#
# If not specified, JavaScript dependencies will have the following URL
# pattern:
#
# http://{cdn.host.http}/js/scope/version/name.js (unsecure)
#
# https://{cdn.host.https}/js/scope/version/name.js (secure)
#
# If "cdn.host.http" and "cdn.host.htt"p are not specified, JavaScript
# dependencies will have the following URL pattern:
#
# http://localhost:8080/js/scope/version/name.js
#
# Generation of portlet dependency markup can be customized with an OSGi
# module that provides a service of the following type:
# com.liferay.portal.kernel.model.portlet.PortletDependencyFactory
#
# Generation of portlet dependency URLs can be customized with an OSGi
# module that provides a service of the following type:
# com.liferay.portal.url.builder.AbsolutePortalURLBuilderFactory
#
# Env: LIFERAY_PORTLET_PERIOD_DEPENDENCY_PERIOD_JAVASCRIPT_PERIOD_URN
#
portlet.dependency.javascript.urn=
##
## Portlet Display Templates
##
#
# Set the location of the default error content for portlet display
# templates for each language type.
#
# Env: LIFERAY_PORTLET_PERIOD_DISPLAY_PERIOD_TEMPLATES_PERIOD_ERROR_OPENBRACKET_FTL_CLOSEBRACKET_
# Env: LIFERAY_PORTLET_PERIOD_DISPLAY_PERIOD_TEMPLATES_PERIOD_ERROR_OPENBRACKET_VM_CLOSEBRACKET_
#
portlet.display.templates.error[ftl]=com/liferay/portlet/portletdisplaytemplate/dependencies/portlet_display_template_error.ftl
portlet.display.templates.error[vm]=com/liferay/portlet/portletdisplaytemplate/dependencies/portlet_display_template_error.vm
#
# Set the location of the default help content for portlet display
# templates for each language type.
#
# Env: LIFERAY_PORTLET_PERIOD_DISPLAY_PERIOD_TEMPLATES_PERIOD_HELP_OPENBRACKET_FTL_CLOSEBRACKET_
# Env: LIFERAY_PORTLET_PERIOD_DISPLAY_PERIOD_TEMPLATES_PERIOD_HELP_OPENBRACKET_VM_CLOSEBRACKET_
#
portlet.display.templates.help[ftl]=com/liferay/portlet/portletdisplaytemplate/dependencies/portlet_display_template_help.ftl
portlet.display.templates.help[vm]=com/liferay/portlet/portletdisplaytemplate/dependencies/portlet_display_template_help.vm
##
## Portlet Filters
##
#
# Input a list of portlet filters that will be applied to all portlets.
#
# Env: LIFERAY_PORTLET_PERIOD_FILTERS_PERIOD_SYSTEM
#
portlet.filters.system=com.liferay.portlet.ScriptDataPortletFilter
##
## Portlet Preferences
##
#
# PortletPreferencesFactoryImpl caches the portlet preferences' XML
# content, where the XML content is used as a cache key. In some cases, the
# content can be very large (i.e. larger than 1 mb). This property defines
# a threshold to use XML content as key only below this threshold. Above the
# threshold, an SHA-1 hash will be generated, but that's an expensive
# operation, so this property should be specified wisely. The default value
# is 1 kb.
#
# Env: LIFERAY_PORTLET_PERIOD_PREFERENCES_PERIOD_CACHE_PERIOD_KEY_PERIOD_THRESHOLD_PERIOD_SIZE
#
portlet.preferences.cache.key.threshold.size=1024
#
# Set this property to false to break PLT.17.1's restriction to allow
# portlet preferences to be stored during render phase. This property exists
# for backwards compatibility with legacy portlets.
#
# Env: LIFERAY_PORTLET_PERIOD_PREFERENCES_PERIOD_STRICT_PERIOD_STORE
#
portlet.preferences.strict.store=true
##
## Theme
##
#
# Set this property to true to load the theme's merged CSS files for faster
# loading for production.
#
# Set this property to false for easier debugging for development. You can
# also disable fast loading by setting the URL parameter "css_fast_load" to
# "0" when the property "theme.css.fast.load.check.request.parameter" is
# also set to true.
#
# Env: LIFERAY_THEME_PERIOD_CSS_PERIOD_FAST_PERIOD_LOAD
#
theme.css.fast.load=true
#
# Set this property to false to ignore the URL parameter "css_fast_load".
# See the property "theme.css.fast.load".
#
# Env: LIFERAY_THEME_PERIOD_CSS_PERIOD_FAST_PERIOD_LOAD_PERIOD_CHECK_PERIOD_REQUEST_PERIOD_PARAMETER
#
theme.css.fast.load.check.request.parameter=false
#
# Set this property to true to load the theme's merged image files for
# faster loading for production.
#
# Set this property to false for easier debugging for development. You can
# also disable fast loading by setting the URL parameter "images_fast_load"
# to "0" when the property "theme.images.fast.load.check.request.parameter"
# is also set to true.
#
# Env: LIFERAY_THEME_PERIOD_IMAGES_PERIOD_FAST_PERIOD_LOAD
#
theme.images.fast.load=true
#
# Set this property to false to ignore the URL parameter "images_fast_load".
# See the property "theme.images.fast.load".
#
# Env: LIFERAY_THEME_PERIOD_IMAGES_PERIOD_FAST_PERIOD_LOAD_PERIOD_CHECK_PERIOD_REQUEST_PERIOD_PARAMETER
#
theme.images.fast.load.check.request.parameter=false
#
# Set this property to true to allow directly invoked JSPs to be
# overridden by a different version of the JSP that exists in a theme.
#
# Env: LIFERAY_THEME_PERIOD_JSP_PERIOD_OVERRIDE_PERIOD_ENABLED
#
theme.jsp.override.enabled=false
#
# Set the theme's shortcut icon.
#
# Env: LIFERAY_THEME_PERIOD_SHORTCUT_PERIOD_ICON
#
theme.shortcut.icon=favicon.ico
#
# Set this property to set the default virtual path for all hot deployed
# themes. See liferay-look-and-feel_7_1_0.dtd and the virtual-path element
# for more information.
#
# Env: LIFERAY_THEME_PERIOD_VIRTUAL_PERIOD_PATH
#
theme.virtual.path=
#
# Set this with an absolute path to specify where imported theme files from
# a LAR will be stored. This path will override the file-storage path
# specified in liferay-theme-loader.xml.
#
# Env: LIFERAY_THEME_PERIOD_LOADER_PERIOD_STORAGE_PERIOD_PATH
#
theme.loader.storage.path=
#
# Themes can be imported via LAR files. Set this to true if imported themes
# should use a new theme ID on every import. This will ensure that a copy of
# the old theme is preserved in the theme loader storage path. However, this
# also means that a lot of themes that are no longer used remain in the file
# system. It is recommended that you set this to false.
#
# Env: LIFERAY_THEME_PERIOD_LOADER_PERIOD_NEW_PERIOD_THEME_PERIOD_ID_PERIOD_ON_PERIOD_IMPORT
#
theme.loader.new.theme.id.on.import=false
#
# Set this to true to decorate portlets by default.
#
# Env: LIFERAY_THEME_PERIOD_PORTLET_PERIOD_DECORATE_PERIOD_DEFAULT
#
theme.portlet.decorate.default=true
#
# Set this to true to expose sharing icons for portlets by default.
#
# Env: LIFERAY_THEME_PERIOD_PORTLET_PERIOD_SHARING_PERIOD_DEFAULT
#
theme.portlet.sharing.default=false
##
## Resource Actions
##
#
# Input a list of comma delimited resource action configurations that will
# be read from the class path.
#
# Env: LIFERAY_RESOURCE_PERIOD_ACTIONS_PERIOD_CONFIGS
#
resource.actions.configs=\
META-INF/resource-actions/default.xml,\
resource-actions/default.xml
#
# This should only be set to false when it is called by Service Builder
# outside of an application server or servlet container.
#
# Env: LIFERAY_RESOURCE_PERIOD_ACTIONS_PERIOD_READ_PERIOD_PORTLET_PERIOD_RESOURCES
#
resource.actions.read.portlet.resources=true
##
## Model Hints
##
#
# Input a list of comma delimited model hints configurations.
#
# Env: LIFERAY_MODEL_PERIOD_HINTS_PERIOD_CONFIGS
#
model.hints.configs=\
META-INF/portal-model-hints.xml,\
classpath*:META-INF/ext-model-hints.xml,\
classpath*:META-INF/portlet-model-hints.xml
##
## Model Tree Path
##
#
# Set the batch size of database query results returned during the tree
# rebuilding operation. If set to -1, the results will not be paginated
# and may result in a larger memory footprint.
#
# Env: LIFERAY_MODEL_PERIOD_TREE_PERIOD_REBUILD_PERIOD_QUERY_PERIOD_RESULTS_PERIOD_BATCH_PERIOD_SIZE
#
model.tree.rebuild.query.results.batch.size=10000
##
## Spring
##
#
# Input a list of comma delimited Spring configurations. These will be
# loaded after the bean definitions specified in the contextConfigLocation
# parameter in web.xml.
#
# Env: LIFERAY_SPRING_PERIOD_CONFIGS
#
spring.configs=\
META-INF/base-spring.xml,\
\
META-INF/util-spring.xml,\
\
META-INF/executor-spring.xml,\
\
META-INF/messaging-core-spring.xml,\
META-INF/messaging-misc-spring.xml,\
\
META-INF/security-spring.xml,\
\
META-INF/company-provider-spring.xml,\
META-INF/document-library-spring.xml,\
META-INF/layout-spring.xml,\
META-INF/model-listener-spring.xml,\
META-INF/notifications-spring.xml,\
META-INF/poller-spring.xml,\
META-INF/prefs-spring.xml,\
META-INF/repository-spring.xml,\
META-INF/search-spring.xml,\
META-INF/social-spring.xml,\
META-INF/workflow-spring.xml,\
\
META-INF/counter-spring.xml,\
META-INF/mail-spring.xml,\
META-INF/portal-spring.xml,\
META-INF/portlet-container-spring.xml,\
META-INF/staging-spring.xml,\
META-INF/virtual-layouts-spring.xml,\