Skip to content

frame animation.yml

Janek Laudan edited this page Feb 6, 2019 · 3 revisions
# this is a dropwizard configuration for the server
server: 
    applicationConnectors:
        - type: https
          port: 3010
          keyStorePath: /path/to/your/keystore.jks
          keyStorePassword: 123456
          trustStorePath: /path/to/your/truststore.jks
          trustStorePassword: 123456
    adminConnectors:
        - type: https
          port: 3011
          keyStorePath: /path/to/your/keystore.jks
          keyStorePassword: 123456

# this is a dropwizard configuration for the client used by the server to fetch 
# information from other server resources
# trusting selfsigned certificates might not be a good idea in a productio environment
jerseyClient:
    timeout: 30000ms
    tls:
        trustStorePath: /path/to/your/truststore.jks
        trustStorePassword: 123456
        trustSelfSignedCertificates: true
        verifyHostname: false
database:
    driverClass: org.h2.Driver
    user: sa
    password: none
    url: jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE
    defaultTransactionIsolation: read-uncommitted
    properties: 
        charSet: UTF-8
        hibernate.dialect: org.hibernate.dialect.H2Dialect
        hibernate.hbm2ddl.auto: create

# path to store downloaded matsim files at. These will be deleted as soon as visualization data is generated
tmpFilePath: C:\\Users\\Janek\\fileUploads\\tmpUploads

# id and secret must be the same as defined in the auth-server's configuration
relyingPartyId: frame-animation-service-id
relyingPartySecret: frame-animation-service-secret

# domain of the frame-animation server
ownHostname: https://localhost:3020

# domain of auth-server
idProvider: https://localhost:3000

# endpoint for token introspection
tokenEndpoint: https://localhost:3000/token

# domain of the file server
fileServer: https://localhost:3010
Clone this wiki locally