diff options
author | Andreas Fitzek <andreas.fitzek@iaik.tugraz.at> | 2014-07-22 14:07:15 +0200 |
---|---|---|
committer | Andreas Fitzek <andreas.fitzek@iaik.tugraz.at> | 2014-07-22 14:07:15 +0200 |
commit | a958e8c36bcc423a70a92dc4a3c562676fa66a37 (patch) | |
tree | c3cdb0122e5899ae0468c6017d7374b33e74214e /pdf-as-web/src/main/configuration | |
parent | 6ded7283b673be398be15880e14d7457b1f7e5bf (diff) | |
download | pdf-as-4-a958e8c36bcc423a70a92dc4a3c562676fa66a37.tar.gz pdf-as-4-a958e8c36bcc423a70a92dc4a3c562676fa66a37.tar.bz2 pdf-as-4-a958e8c36bcc423a70a92dc4a3c562676fa66a37.zip |
added buildTomcat task
Diffstat (limited to 'pdf-as-web/src/main/configuration')
-rw-r--r-- | pdf-as-web/src/main/configuration/pdf-as-web.properties | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/pdf-as-web/src/main/configuration/pdf-as-web.properties b/pdf-as-web/src/main/configuration/pdf-as-web.properties new file mode 100644 index 00000000..2a779510 --- /dev/null +++ b/pdf-as-web/src/main/configuration/pdf-as-web.properties @@ -0,0 +1,48 @@ + +pdfas.dir=conf/pdf-as + +error.showdetails=false + +bku.local.url=http://127.0.0.1:3495/http-security-layer-request + +#bku.online.url=http://www.example.com/bkuonline/http-security-layer-request + +#bku.mobile.url= + +ks.enabled=false +ks.file=test.p12 +ks.type=PKCS12 +ks.pass=123456 +ks.key.alias=ecc_test +ks.key.pass=123456 + +#Enable SOAP Service +soap.sign.enabled=true + +whitelist.enabled=true +# Matches everything +whitelist.url.01=^.*$ + +public.url=http://localhost:8080/pdf-as-web + +#Request Store +# Default In Memory Store +request.store=at.gv.egiz.pdfas.web.store.InMemoryRequestStore +# DB Request Store for cluster +#request.store=at.gv.egiz.pdfas.web.store.DBRequestStore + +# seconds Requests are kept in Database (default 600) +#request.db.timeout=600 + +#Hibernate Properties for DB Store + +#hibernate.props.hibernate.dialect=org.hibernate.dialect.MySQLDialect +#hibernate.props.hibernate.connection.driver_class=com.mysql.jdbc.Driver +#hibernate.props.hibernate.connection.url=jdbc:mysql://localhost/pdfasweb +#hibernate.props.hibernate.connection.username=pdfasweb +#hibernate.props.hibernate.connection.password=pdfasweb +#hibernate.props.hibernate.connection.pool_size=5 +#hibernate.props.hibernate.connection.autocommit=false +#hibernate.props.hibernate.show_sql=true +#hibernate.props.hibernate.hbm2ddl.auto=update + |