We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 191d9d1 + 935a5c6 commit cc7b126Copy full SHA for cc7b126
defaults/main.yml
@@ -74,6 +74,8 @@ tomcat_ajp_connector_options: ""
74
75
tomcat_contexts: []
76
77
+tomcat_allow_root_symlinks: false
78
+
79
tomcat_global_context:
80
jdbc_resources: []
81
templates/catalina_base.conf.context.xml.j2
@@ -2,6 +2,10 @@
2
<Context>
3
<WatchedResource>WEB-INF/web.xml</WatchedResource>
4
5
+{% if tomcat_allow_root_symlinks %}
6
+ <Resources allowLinking="true" />
7
+{% endif %}
8
9
{% for resource in tomcat_global_context['jdbc_resources'] %}
10
<Resource name="{{ resource.name }}" auth="Container" type="javax.sql.DataSource"
11
driverClassName="{{ resource.driverClassName }}"
0 commit comments