Rohan Patel | 5f5c7ec | 2019-09-25 14:35:28 -0400 | [diff] [blame^] | 1 | # Tomcat
|
| 2 | server.port=8443
|
| 3 | server.port.http=8080
|
| 4 | security.require-ssl=false
|
| 5 |
|
| 6 | server.ssl.key-store-type=PKCS12
|
| 7 | server.ssl.key-store=${OTF_CERT_PATH}
|
| 8 | server.ssl.key-store-password=${OTF_CERT_PASS}
|
| 9 | #server.servlet.context-path=/otf/api
|
| 10 | #spring.jersey.application-path=/otf
|
| 11 | #springfox.documentation.swagger.v2.path=/otf/api/swagger.json
|
| 12 |
|
| 13 | # MongoDB
|
| 14 | otf.mongo.hosts=${OTF_MONGO_HOSTS}
|
| 15 | otf.mongo.username=${OTF_MONGO_USERNAME}
|
| 16 | otf.mongo.password=${OTF_MONGO_PASSWORD}
|
| 17 | otf.mongo.replicaSet=${OTF_MONGO_REPLICASET}
|
| 18 | otf.mongo.database=${OTF_MONGO_DATABASE}
|
| 19 |
|
| 20 | # Jackson
|
| 21 | spring.jackson.default-property-inclusion=always
|
| 22 |
|
| 23 | # Logging
|
| 24 | logging.level.org.springframework.web=DEBUG
|
| 25 | logging.level.org.hibernate=ERROR
|
| 26 | logging.file.max-history=5
|
| 27 | logging.file=otf/logs/serviceapi.log
|
| 28 | logging.path=otf/logs
|
| 29 |
|
| 30 | spring.resources.add-mappings=true
|
| 31 |
|
| 32 | ssl.flag =${https-only.flag:true}
|
| 33 | #springfox.documentation.auto-startup=false
|
| 34 | #springfox.documentation.swagger.v2.path=/otf/swagger.json
|
| 35 |
|
| 36 | #config
|
| 37 | aaf.enabled=true
|
| 38 | aaf.call-timeout=10000
|
| 39 | aaf.conn-timeout=6000
|
| 40 | aaf.default-realm=localhost
|
| 41 | aaf.env=PROD
|
| 42 | aaf.locate-url=https://localhost
|
| 43 | aaf.lur-class=org.onap.aaf.cadi.aaf.v2_0.AAFLurPerm
|
| 44 | aaf.url=https://localhost
|
| 45 | basic-realm=localhost
|
| 46 | basic-warn=true
|
| 47 | cadi-latitude=38.62782
|
| 48 | cadi-longitude=-90.19458
|
| 49 | cadi-protocols=TLSv1.1,TLSv1.2
|
| 50 | cadi-noauthn=/health/v1:/demo/openapi.json |