Advertisement
Guest User

Untitled

a guest
Aug 3rd, 2016
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.80 KB | None | 0 0
  1.  
  2. config.environmentVariableName = GENETIC_CONSULTANT_SERVER_ENV_LOC
  3.  
  4. #environment.mode = dev
  5. #authentication.profile = auth-cas
  6. authentication.profile = auth-local
  7.  
  8.  
  9. #db
  10. db.url=jdbc:postgresql://localhost:5432/GeneticConsultantServer
  11. db.username=viratech
  12. db.password=another
  13.  
  14. [mongo]
  15. mongo.host=localhost
  16. mongo.port=27017
  17. mongo.db=GeneticConsultantServer
  18.  
  19. [elasticsearch]
  20. cdm.indexName=firstIndex
  21. cdm.elasticSearch.client.port=9300
  22. cdm.elasticSearch.client.host=localhost
  23. cdm.elasticSearch.cluster.name=GeneticConsultantServer_elastic_server
  24.  
  25. #Server Configurations
  26. server.protocol=http
  27. server.port=8080
  28. server.host=localhost
  29. server.contextPath=GeneticConsultantServer
  30. server.url=${server.protocol}://${server.host}:${server.port}/${server.contextPath}
  31.  
  32. #AuthServer Configurations
  33. authServer.protocol=http
  34. authServer.port=8080
  35. authServer.host=localhost
  36. authServer.contextPath=auth
  37. authServer.url=${authServer.protocol}://${authServer.host}:${authServer.port}/${authServer.contextPath}
  38.  
  39. [fileManagement]
  40. #FileManagement
  41. tempFilesFolder=/home/user/genetic-server-files/files/
  42. fileSystem_Files.baseDirPath.unix=/opt/GeneticConsultantServer/files
  43. fileSystem_Files.baseDirPath.windows=C:/GeneticConsultantServer/files
  44. temp.uploadfile.path= /tmp
  45.  
  46. # password.strong.threshold = VERY_WEEK_PASSWORD, WEEK_PASSWORD, GOOD_PASSWORD, STRONG_PASSWORD, VERY_STRONG_PASSWORD
  47. password.strong.threshold=GOOD_PASSWORD
  48. password.expiration.period.hours = 360 * 24
  49.  
  50. user.expiration.period.hours = 3600 * 24
  51. user.nologin.expiration.hours = 30 * 24
  52.  
  53.  
  54. #Enable/Disable Tracing for Jersey
  55. #jersey.tracing.enabled=true
  56.  
  57. #Format for requestLogger.ignoreList: [path|*]-[method|*] , ...
  58. requestLogger.ignoreList = *-OPTIONS, user-POST, config-GET
  59. requestLogger.filePath = /home/user/log/GeneticConsultantServer/ReqLog_
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement