forked from liferay/liferay-portal
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathportal.properties
12013 lines (10708 loc) · 454 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 the fetch size of the result set for statements used during upgrades.
# Larger values will result in less network requests to the database and
# speed up the upgrade process at the cost of keeping more results in
# memory.
#
# Env: LIFERAY_UPGRADE_PERIOD_CONCURRENT_PERIOD_FETCH_PERIOD_SIZE
#
upgrade.concurrent.fetch.size=1000
#
# Set the max size of the future list before which the upgrade process will
# stop to clear it. This future list is used to store task references that
# are run in parallel in long running upgrades. Setting it to a value too
# high will make the upgrade process keep more objects from being garbage
# collected for a longer time, which may produce high memory usage and
# potentially out of memory errors.
#
# Env: LIFERAY_UPGRADE_PERIOD_CONCURRENT_PERIOD_PROCESS_PERIOD_FUTURE_PERIOD_LIST_PERIOD_MAX_PERIOD_SIZE
#
upgrade.concurrent.process.future.list.max.size=1000
#
# Set this to true to execute the upgrade process when the portal starts and
# modules are activated. This property is always read as false for
# Hypersonic.
#
# 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
#
# Set this to true to enabled log context for upgrade classes.
#
# Env: LIFERAY_UPGRADE_PERIOD_LOG_PERIOD_CONTEXT_PERIOD_ENABLED
#
upgrade.log.context.enabled=false
#
# Specify the number of seconds that the upgrade report generation will wait
# for calculating the document library storage size before timing out.
# Specify 0 to disable the document library storage size calculation.
#
# Env: LIFERAY_UPGRADE_PERIOD_REPORT_PERIOD_DL_PERIOD_STORAGE_PERIOD_SIZE_PERIOD_TIMEOUT
#
upgrade.report.dl.storage.size.timeout=10
#
# Set the location of the upgrade report directory. If a value is not set,
# then the location will default to ${liferay.home}/reports when using the
# upgrade on startup or ./reports when using the upgrade tool.
#
# Env: LIFERAY_UPGRADE_PERIOD_REPORT_PERIOD_DIR
#
upgrade.report.dir=
#
# Set this to true to generate a report of errors, events, and warnings
# after the upgrade completes.
#
# Env: LIFERAY_UPGRADE_PERIOD_REPORT_PERIOD_ENABLED
#
upgrade.report.enabled=true
#
# Set the threshold in milliseconds to collect SQL statements that took at
# least this long to complete during the upgrade.
#
# Env: LIFERAY_UPGRADE_PERIOD_REPORT_PERIOD_SQL_PERIOD_STATEMENT_PERIOD_THRESHOLD
#
upgrade.report.sql.statement.threshold=500
#
# Set the threshold in milliseconds to collect upgrade processes that took
# at least this long to complete during the upgrade.
#
# Env: LIFERAY_UPGRADE_PERIOD_REPORT_PERIOD_UPGRADE_PERIOD_PROCESS_PERIOD_THRESHOLD
#
upgrade.report.upgrade.process.threshold=10000
##
## 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.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 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 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 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
##
## Health Check
##
#
# Set this property to true to enable data source health checks at
# /health_check/data_source.
#
# Env: LIFERAY_HEALTH_PERIOD_CHECK_PERIOD_DATA_PERIOD_SOURCE_PERIOD_ENABLED
#
health.check.data.source.enabled=false
##
## 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.
#
# 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.HookHotDeployListener,\
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
##
## 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.
#
# 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
#
# Set this property to true to only read portlet resources from web modules
# where the portlets are defined and only read model resources from service
# modules. Set this property to false to allow reading portlet and model
# resources in the config file of a service or web module for backwards
# compatibility.
#
# Env: LIFERAY_RESOURCE_PERIOD_ACTIONS_PERIOD_STRICT_PERIOD_MODE_PERIOD_ENABLED
#
resource.actions.strict.mode.enabled=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
##
#
# Set this property to true to enable Spring bean factory strict lifecycle
# methods. This will remove Spring's inferring for bean lifecycle methods
# which can avoid large amount of NoSuchMethodException during bean factory
# initialization. Set this to false to fallback to Spring's default
# behavior.
#
# Env: LIFERAY_SPRING_PERIOD_BEANFACTORY_PERIOD_STRICT_PERIOD_LIFECYCLE_PERIOD_ENABLED
#
spring.beanfactory.strict.lifecycle.enabled=true
#
# 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/infrastructure-spring.xml,\
\
/META-INF/hibernate-spring.xml,\
\
/META-INF/base-spring.xml,\
\
/META-INF/util-spring.xml,\
\
/META-INF/security-spring.xml,\
\
/META-INF/document-library-spring.xml,\
/META-INF/layout-spring.xml,\
/META-INF/model-listener-spring.xml,\
/META-INF/prefs-spring.xml,\
/META-INF/repository-spring.xml,\
\
/META-INF/counter-spring.xml,\
/META-INF/mail-spring.xml,\
/META-INF/portal-spring.xml,\
/META-INF/portlet-container-spring.xml,\
\
classpath*:META-INF/ext-spring*.xml
#
# Set this property to true to verify that the session factory is owned by
# the proper transaction manager. Set this property to false to turn off
# verification for better performance.
#
# Env: LIFERAY_SPRING_PERIOD_HIBERNATE_PERIOD_SESSION_PERIOD_FACTORY_PERIOD_VERIFY
#
spring.hibernate.session.factory.verify=true
#
# Set the list of portal classes that will be preloaded by the
# PreloadClassloader and therefore available to a plugin's Hibernate session
# factory.
#
# Env: LIFERAY_SPRING_PERIOD_HIBERNATE_PERIOD_SESSION_PERIOD_FACTORY_PERIOD_PRELOAD_PERIOD_CLASSLOADER_PERIOD_CLASSES
#
spring.hibernate.session.factory.preload.classloader.classes=\
org.hibernate.engine.jdbc.WrappedBlob
#
# Set this property to false to manually open and close sessions.
#
# Env: LIFERAY_SPRING_PERIOD_HIBERNATE_PERIOD_SESSION_PERIOD_DELEGATED
#
spring.hibernate.session.delegated=true
##
## Hibernate
##
#
# Input a list of comma delimited Hibernate configurations.
#
# Env: LIFERAY_HIBERNATE_PERIOD_CONFIGS
#
hibernate.configs=\
META-INF/portal-hbm.xml,\
classpath*:META-INF/ext-hbm.xml
#
# Liferay will automatically detect the Hibernate dialect in
# com.liferay.portal.spring.PortalHibernateConfiguration. Set this property
# to manually override the automatically detected dialect.
#
# Env: LIFERAY_HIBERNATE_PERIOD_DIALECT
#
#hibernate.dialect=
#
# Set the JDBC batch size to improve performance.
#
# If you're using Hypersonic, you SHOULD set the batch size to 0 as a
# workaround for a logging bug in the Hypersonic driver. See LPS-5426 for
# more information.
#
# If you're using Oracle 9i, you MUST set the batch size to 0 as a
# workaround for a hanging bug in the Oracle driver. See LEP-1234 for more
# information.
#
# Env: LIFERAY_HIBERNATE_PERIOD_JDBC_PERIOD_BATCH_UNDERLINE_SIZE
#
#hibernate.jdbc.batch_size=0
hibernate.jdbc.batch_size=2000
#
# Set other miscellaneous Hibernate properties.
#
# Env: LIFERAY_HIBERNATE_PERIOD_BYTECODE_PERIOD_USE_UNDERLINE_REFLECTION_UNDERLINE_OPTIMIZER
# Env: LIFERAY_HIBERNATE_PERIOD_JDBC_PERIOD_USE_UNDERLINE_SCROLLABLE_UNDERLINE_RESULTSET
# Env: LIFERAY_HIBERNATE_PERIOD_SCHEMA_UNDERLINE_NAME_UNDERLINE_RESOLVER
# Env: LIFERAY_HIBERNATE_PERIOD_SHOW_UNDERLINE_SQL
#
hibernate.jdbc.use_scrollable_resultset=true
hibernate.bytecode.use_reflection_optimizer=true
hibernate.schema_name_resolver=com.liferay.portal.spring.hibernate.NullSchemaNameResolver
hibernate.show_sql=false
#
# Use the classic query factory until WebLogic and Hibernate 3 can get
# along. See http://www.hibernate.org/250.html#A23 for more information.
#
# Env: LIFERAY_HIBERNATE_PERIOD_QUERY_PERIOD_FACTORY_UNDERLINE_CLASS
#
hibernate.query.factory_class=org.hibernate.hql.internal.classic.ClassicQueryTranslatorFactory
#
# Set this property to true to enable Hibernate cache monitoring. See
# LPS-2056 for more information.
#
# Env: LIFERAY_HIBERNATE_PERIOD_GENERATE_UNDERLINE_STATISTICS
#
hibernate.generate_statistics=false
#
# Set this property to true to enable HBM JAXB cache to speed up startup.
#
# Env: LIFERAY_HIBERNATE_PERIOD_HBM_PERIOD_JAXB_PERIOD_CACHE
#
hibernate.hbm.jaxb.cache=true
#
# Set this property to true to enable constraint propagation to DDL.
#
# Env: LIFERAY_HIBERNATE_PERIOD_VALIDATOR_PERIOD_APPLY_UNDERLINE_TO_UNDERLINE_DDL
#
hibernate.validator.apply_to_ddl=false
##
## JDBC
##
#
# Set the JNDI name to lookup the JDBC data source. If none is set, then the
# portal will attempt to create the JDBC data source based on the properties
# prefixed with "jdbc.default.".
#
# Env: LIFERAY_JDBC_PERIOD_DEFAULT_PERIOD_JNDI_PERIOD_NAME
#
#jdbc.default.jndi.name=jdbc/LiferayPool
#
# Set the properties used to create the JDBC data source. These properties
# will only be read if the property "jdbc.default.jndi.name" is not set.
#
# The default settings are configured for an in-memory database called
# Hypersonic that is not recommended for production use. Please change the
# properties to use another database.
#
# To configure the portal to use one data source for read calls and another
# data source for read-write calls, follow these steps:
#
# 1. Similar to the settings prefixed with "jdbc.default.", create a set of
# properties prefixed with "jdbc.read." to handle read calls and another set
# of properties prefixed with "jdbc.write." to handle read-write calls.
#
# 2. Add "jdbc.read.jndi.name" and "jdbc.write.jndi.name" properties that
# specify the data source JNDI names.
#
#
# DB2
#
# Env: LIFERAY_JDBC_PERIOD_DEFAULT_PERIOD_DRIVER_UPPERCASEC_LASS_UPPERCASEN_AME
# Env: LIFERAY_JDBC_PERIOD_DEFAULT_PERIOD_PASSWORD
# Env: LIFERAY_JDBC_PERIOD_DEFAULT_PERIOD_URL
# Env: LIFERAY_JDBC_PERIOD_DEFAULT_PERIOD_USERNAME
#
#jdbc.default.driverClassName=com.ibm.db2.jcc.DB2Driver
#jdbc.default.url=jdbc:db2://localhost:50000/lportal:deferPrepares=false;fullyMaterializeInputStreams=true;fullyMaterializeLobData=true;progresssiveLocators=2;progressiveStreaming=2;
#jdbc.default.username=db2admin
#jdbc.default.password=lportal
#
# Hypersonic
#
# Env: LIFERAY_JDBC_PERIOD_DEFAULT_PERIOD_DRIVER_UPPERCASEC_LASS_UPPERCASEN_AME
# Env: LIFERAY_JDBC_PERIOD_DEFAULT_PERIOD_PASSWORD
# Env: LIFERAY_JDBC_PERIOD_DEFAULT_PERIOD_URL
# Env: LIFERAY_JDBC_PERIOD_DEFAULT_PERIOD_USERNAME
#
jdbc.default.driverClassName=org.hsqldb.jdbc.JDBCDriver
jdbc.default.url=jdbc:hsqldb:${liferay.home}/data/hypersonic/lportal;hsqldb.lock_file=false
jdbc.default.username=sa