Project first commit
This commit is contained in:
commit
c54cb86b36
203 changed files with 39432 additions and 0 deletions
1
config/patches/system/add-demo-user.sh
Normal file
1
config/patches/system/add-demo-user.sh
Normal file
|
|
@ -0,0 +1 @@
|
|||
$JBOSS_HOME/bin/add-user.sh demo@example.com demo
|
||||
5
config/patches/system/add-postgresql-driver.cli
Normal file
5
config/patches/system/add-postgresql-driver.cli
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
/subsystem=datasources/jdbc-driver=postgresql:add( \
|
||||
driver-name="postgresql", \
|
||||
driver-module-name="org.postgresql", \
|
||||
driver-xa-datasource-class-name="org.postgresql.xa.PGXADataSource" \
|
||||
)
|
||||
14
config/patches/system/init.cli
Normal file
14
config/patches/system/init.cli
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
/system-property=webbpm.mode:add(value=production)
|
||||
/system-property=authentication.method:add(value=form)
|
||||
/subsystem=undertow/configuration=filter/gzip=gzipFilter:add()
|
||||
/subsystem=undertow/server=default-server/host=default-host/\
|
||||
filter-ref=gzipFilter:add(predicate="exists('%{o,Content-Type}') and regex(pattern='(?:application/javascript|text/css|text/html|text/xml|application/json)(;.*)?', value=%{o,Content-Type}, full-match=true)")
|
||||
/subsystem=undertow/configuration=filter/response-header=vary-header:add(header-name="Vary", header-value="Accept-Encoding")
|
||||
/subsystem=undertow/server=default-server/host=default-host/filter-ref=vary-header:add()
|
||||
/subsystem=undertow/server=default-server/http-listener=default/:write-attribute(name=max-post-size,value=${env.MAX_POST_SIZE:104857600})
|
||||
data-source remove --name=ExampleDS
|
||||
/subsystem=ee/service=default-bindings:remove
|
||||
/system-property=jboss.bind.address.management:add(value=0.0.0.0)
|
||||
/system-property=jboss.bind.address:add(value=0.0.0.0)
|
||||
module add --name=org.postgresql --resources=./patches/system/postgresql-driver.jar --dependencies=javax.api,javax.transaction.api
|
||||
shutdown --restart
|
||||
Loading…
Add table
Add a link
Reference in a new issue