Skip to content

Commit b5ef334

Browse files
committed
Adding support for official 4.3 release.
1 parent 9f4c8b5 commit b5ef334

38 files changed

+1932
-0
lines changed
Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
app:
2+
version: '@project.version@'
3+
4+
server:
5+
port: {{furmsServer.port}}
6+
address: {{furmsServer.host}}
7+
ssl:
8+
key-store-type: {{furmsServer.pki.keyStore.type}}
9+
key-store-password: {{furmsServer.pki.keyStore.password}}
10+
key-store: ./{{keystoreTargetFileName}}
11+
key-password: ${server.ssl.key-store-password}
12+
enabled-protocols: TLSv1.2, TLSv1.3
13+
14+
furms:
15+
unity:
16+
url: https://{{unity.advertisedHost}}
17+
ssl:
18+
trust-store: file:./{{truststoreTargetFileName}}
19+
trust-store-password: {{trustStore.password}}
20+
21+
admin-url: https://{{unity.host}}:{{unity.port}}/rest-admin/v1
22+
admin-user: {{unityApiClientUsername}}
23+
admin-password: {{unityApiClientPassword}}
24+
oAuth:
25+
clientId: {{unityOauthClientUsername}}
26+
clientSecret: {{unityOauthClientPassword}}
27+
url: https://{{furmsServer.advertisedHost}}
28+
psk:
29+
centralIdPUser: {{furmsServer.preSharedKeys.cIdP.username}}
30+
centralIdPSecret: {{furmsServer.preSharedKeys.cIdP.password}}
31+
front:
32+
maxSessionInactivity: {{furmsServer.ui.maxSessionInactivityInSeconds if furmsServer.ui.maxSessionInactivityInSeconds is defined else '1800'}}
33+
secondsBeforeShowingSessionExpirationWarning: {{furmsServer.ui.secondsBeforeShowingLogoutWarning if furmsServer.ui.secondsBeforeShowingLogoutWarning is defined else '120'}}
34+
language: en
35+
layout:
36+
styles:
37+
custom: file:./layout/custom_style.css
38+
panels:
39+
top: file:./layout/top_panel.html
40+
left: file:./layout/left_panel.html
41+
right: file:./layout/right_panel.html
42+
bottom: file:./layout/bottom_panel.html
43+
44+
sshkeys:
45+
cleanStaleRequestsAfter: 1D
46+
notification:
47+
new-policy-template-id: policyAcceptanceNew
48+
new-policy-revision-template-id: policyAcceptanceRevision
49+
new-invitation-template-id: invitationNew
50+
accepted-invitation-template-id: invitationAccepted
51+
rejected-invitation-template-id: invitationRejected
52+
new-application-template-id: applicationNew
53+
accepted-application-template-id: applicationAccepted
54+
rejected-application-template-id: applicationRejected
55+
resource-usage-alarm-template-id: resourceUsageAlarm
56+
resource-usage-alarm-without-url-template-id: resourceUsageAlarmWithoutUrl
57+
58+
invitations:
59+
expiration-time-in-seconds: 604800
60+
fenix-form: fenixForm
61+
site-form: siteForm
62+
community-form: communityForm
63+
project-form: projectForm
64+
65+
spring:
66+
datasource:
67+
url: jdbc:postgresql://{{furmsServer.db.host}}/{{furmsServer.db.dbName}}
68+
username: {{furmsServer.db.username}}
69+
password: {{furmsServer.db.password}}
70+
driver-class-name: org.postgresql.Driver
71+
hikari:
72+
leak-detection-threshold: 10000
73+
rabbitmq:
74+
host: {{furmsServer.broker.host}}
75+
port: {{furmsServer.broker.port}}
76+
username: {{furmsServer.broker.username}}
77+
password: {{furmsServer.broker.password}}
78+
connection-timeout: 10000
79+
virtualHost: {{furmsServer.broker.virtualHost}}
80+
ssl:
81+
enabled: true
82+
trustStore: ${furms.unity.ssl.trust-store}
83+
trustStorePassword: ${furms.unity.ssl.trust-store-password}
84+
algorithm: TLSv1.2
85+
86+
logging:
87+
config: ./logback.xml
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<div></div>

furms-devops-tooling/files/config_templates/4.3/furms-server/layout/custom_style.css

Whitespace-only changes.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<div></div>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<div></div>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<div></div>
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<configuration scan="true" scanPeriod="10 seconds">
2+
3+
<appender name="ROLLING" class="ch.qos.logback.core.rolling.RollingFileAppender">
4+
<file>../../logs/furms-service.log</file>
5+
<rollingPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedRollingPolicy">
6+
<fileNamePattern>logs/furms-service-%d{yyyy-MM-dd}.%i.log</fileNamePattern>
7+
<maxFileSize>100MB</maxFileSize>
8+
<maxHistory>90</maxHistory>
9+
<totalSizeCap>10GB</totalSizeCap>
10+
</rollingPolicy>
11+
12+
<encoder>
13+
<pattern>%date [%10.10thread] [%X{queueName}] [%X{userId}] %-5level %logger - %msg%n</pattern>
14+
</encoder>
15+
</appender>
16+
17+
<root level="INFO">
18+
<appender-ref ref="ROLLING" />
19+
</root>
20+
21+
<logger name="io.imunity.furms" level="INFO" />
22+
23+
<logger name="org.springframework.security" level="INFO" />
24+
<logger name="org.springframework.security.oauth2" level="INFO" />
25+
<logger name="org.springframework.web.client.RestTemplate" level="INFO" />
26+
<logger name="org.springframework.context.support" level="WARN" />
27+
28+
</configuration>

0 commit comments

Comments
 (0)