Advertisement
Guest User

Untitled

a guest
Sep 24th, 2018
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.56 KB | None | 0 0
  1. # This is the main configuration file for the application.
  2. # ~~~~~
  3. application.name=aeroports-voyages
  4.  
  5. # Application mode
  6. # ~~~~~
  7. # Set to dev to enable instant reloading and other development help.
  8. # Otherwise set to prod.
  9. application.mode=dev
  10. %prod.application.mode=prod
  11.  
  12. # Secret key
  13. # ~~~~~
  14. # The secret key is used to secure cryptographics functions
  15. # If you deploy your application to several instances be sure to use the same key !
  16. application.secret=
  17.  
  18. # i18n
  19. # ~~~~~
  20. # Define locales used by your application.
  21. # You can then place localized messages in conf/messages.{locale} files
  22. application.langs=fr,en,de,es,it,nl
  23.  
  24. # Date format
  25. # ~~~~~
  26. date.format=yyyy-MM-dd
  27. # date.format.fr=dd/MM/yyyy
  28.  
  29. # Server configuration
  30. # ~~~~~
  31. # If you need to change the HTTP port, uncomment this (default is set to 9000)
  32. # http.port=9000
  33. #
  34. # By default the server listen for HTTP on the wilcard address.
  35. # You can restrict this.db
  36. # http.address=127.0.0.1
  37. #
  38. # Use this if you don't host your Play application at the root of the domain
  39. # you're serving it from. This parameter has no effect when deployed as a
  40. # war, because the path will be handled by the application server.
  41. # http.path=/
  42.  
  43. # Session configuration
  44. # ~~~~~~~~~~~~~~~~~~~~~~
  45. # By default, session will be written to the transient PLAY_SESSION cookie.
  46. # The cookies are not secured by default, only set it to true
  47. # if you're serving your pages through https.
  48. # application.session.cookie=PLAY
  49. # application.session.maxAge=1h
  50. # application.session.secure=false
  51.  
  52. # Session/Cookie sharing between subdomain
  53. # ~~~~~~~~~~~~~~~~~~~~~~
  54. # By default a cookie is only valid for a specific domain. By setting
  55. # application.defaultCookieDomain to '.example.com', the cookies
  56. # will be valid for all domains ending with '.example.com', ie:
  57. # foo.example.com and bar.example.com
  58. # application.defaultCookieDomain=.example.com
  59.  
  60. # JVM configuration
  61. # ~~~~~
  62. # Define which port is used by JPDA when application is in debug mode (default is set to 8000)
  63. # jpda.port=8000
  64. #
  65. # Java source level => 1.5, 1.6 or 1.7 (experimental)
  66. # java.source=1.5
  67.  
  68. # Log level
  69. # ~~~~~
  70. # Specify log level for your application.
  71. # If you want a very customized log, create a log4j.properties file in the conf directory
  72. # application.log=INFO
  73. #
  74. # More logging configuration
  75. # application.log.path=/log4j.properties
  76. # application.log.system.out=off
  77.  
  78. # Database configuration
  79. # ~~~~~
  80. # Enable a database engine if needed.
  81. #
  82. # To quickly set up a development database, use either:
  83. # - mem : for a transient in memory database (H2 in memory)
  84. # - fs : for a simple file written database (H2 file stored)
  85. # db=mem
  86. #
  87. # To connect to a local MySQL5 database, use:
  88. # db=mysql://root:admin@localhost/aeroportsvoyages
  89. #
  90. # To connect to a local PostgreSQL9 database, use:
  91. # db=postgres://user:pwd@host/database
  92. #
  93. # If you need a full JDBC configuration use the following :
  94. # db.url=jdbc:postgresql:database_name
  95. db.driver=com.mysql.cj.jdbc.Driver
  96. db.user=root
  97. db.pass=admin
  98. db.default.url=jdbc:mysql://localhost:3306/aeroportsvoyages
  99. #
  100. # Connections pool configuration :
  101. # db.pool.timeout=1000
  102. # db.pool.maxSize=30
  103. # db.pool.minSize=10
  104. #
  105. # If you want to reuse an existing Datasource from your application server, use:
  106. # db=java:/comp/env/jdbc/myDatasource
  107. #
  108. # When using an existing Datasource, it's sometimes needed to destroy it when
  109. # the application is stopped. Depending on the datasource, you can define a
  110. # generic "destroy" method :
  111. # db.destroyMethod=close
  112.  
  113. # JPA Configuration (Hibernate)
  114. # ~~~~~
  115. #
  116. # Specify the custom JPA dialect to use here (default to guess):
  117. # jpa.dialect=org.hibernate.dialect.PostgreSQLDialect
  118. #
  119. # Specify the ddl generation pattern to use. Set to none to disable it
  120. # (default to update in DEV mode, and none in PROD mode):
  121. # jpa.ddl=update
  122. #
  123. # Debug SQL statements (logged using DEBUG level):
  124. # jpa.debugSQL=true
  125. #
  126. # You can even specify additional hibernate properties here:
  127. # hibernate.use_sql_comments=true
  128. # ...
  129. #
  130. # Store path for Blob content
  131. attachments.path=data/attachments
  132.  
  133. # Memcached configuration
  134. # ~~~~~
  135. # Enable memcached if needed. Otherwise a local cache is used.
  136. # memcached=enabled
  137. #
  138. # Specify memcached host (default to 127.0.0.1:11211)
  139. # memcached.host=127.0.0.1:11211
  140. #
  141. # Or you can specify multiple host to build a distributed cache
  142. # memcached.1.host=127.0.0.1:11211
  143. # memcached.2.host=127.0.0.1:11212
  144. #
  145. # Use plain SASL to authenticate for memcached
  146. # memcached.user=
  147. # memcached.password=
  148.  
  149. # HTTP Response headers control for static files
  150. # ~~~~~
  151. # Set the default max-age, telling the user's browser how long it should cache the page.
  152. # Default is 3600 (one hour). Set it to 0 to send no-cache.
  153. # This is only read in prod mode, in dev mode the cache is disabled.
  154. # http.cacheControl=3600
  155.  
  156. # If enabled, Play will generate entity tags automatically and send a 304 when needed.
  157. # Default is true, set it to false to deactivate use of entity tags.
  158. # http.useETag=true
  159.  
  160. # Custom mime types
  161. # mimetype.xpi=application/x-xpinstall
  162.  
  163. # WS configuration
  164. # ~~~~~
  165. # Default engine is Async Http Client, uncomment to use
  166. # the JDK's internal implementation
  167. # webservice = urlfetch
  168. # If you need to set proxy params for WS requests
  169. # http.proxyHost = localhost
  170. # http.proxyPort = 3128
  171. # http.proxyUser = jojo
  172. # http.proxyPassword = jojo
  173.  
  174. # Mail configuration
  175. # ~~~~~
  176. # Default is to use a mock Mailer
  177. mail.smtp=mock
  178.  
  179. # Or, specify mail host configuration
  180. # mail.smtp.host=127.0.0.1
  181. # mail.smtp.user=admin
  182. # mail.smtp.pass=
  183. # mail.smtp.channel=ssl
  184.  
  185. # Url-resolving in Jobs
  186. # ~~~~~~
  187. # When rendering templates with reverse-url-resoling (@@{..}) in Jobs (which do not have an inbound Http.Request),
  188. # ie if sending a HtmlMail, Play need to know which url your users use when accessing your app.
  189. # %test.application.baseUrl=https://localhost:9000/
  190. # %prod.application.baseUrl=https://www.yourdomain.com/
  191.  
  192. # Jobs executor
  193. # ~~~~~~
  194. # Size of the Jobs pool
  195. # play.jobs.pool=10
  196. # Execution pool
  197. # ~~~~~
  198. # Default to 1 thread in DEV mode or (nb processors + 1) threads in PROD mode.
  199. # Try to keep a low as possible. 1 thread will serialize all requests (very useful for debugging purpose)
  200. # play.pool=3
  201. jpa.dialect=org.hibernate.dialect.MySQL5Dialect
  202. # Open file from errors pages
  203. # ~~~~~
  204. # If your text editor supports opening files by URL, Play! will
  205. # dynamically link error pages to files
  206. #
  207. # Example, for textmate:
  208. # play.editor=txmt://open?url=file://%s&line=%s
  209.  
  210. # Testing. Set up a custom configuration for test mode
  211. # ~~~~~
  212. #%test.module.cobertura=${play.path}/modules/cobertura
  213. %test.application.mode=dev
  214. %test.db.url=jdbc:h2:mem:play;MODE=MYSQL;LOCK_MODE=0
  215. %test.jpa.ddl=create
  216. %test.mail.smtp=mock
  217.  
  218. module.secure=${play.path}/modules/secure
  219. crud.login=xxx
  220. crud.password=xxx
  221.  
  222. promo.refreshdate.limit=5
  223. contact.mail=xxx
  224.  
  225. odigeo.idpart=947593
  226. odigeo.idpart.fr=947593
  227. odigeo.idpart.en=947931
  228. odigeo.idpart.es=948140
  229. odigeo.idpart.it=948141
  230. odigeo.idpart.nl=948142
  231. odigeo.idpart.de=948143
  232. odigeo.url=https://www.travelagency.travel/moteur/vol_attente_1.html
  233. odigeo.url.en=https://www.travelagency.travel/engine/flight_awaiting_1.html
  234. odigeo.url.it=https://www.travelagency.travel/motore/voli_attesa_1.html
  235. odigeo.url.de=https://www.travelagency.travel/suchmaschine/flug_seite_ladt_1.html
  236. odigeo.url.nl=https://www.travelagency.travel/zoekmotor/vlucht_wachten_1.html
  237. odigeo.url.es=https://www.travelagency.travel/motor/vuelo_espera_1.html
  238. odigeo.url.vh=https://www.travelagency.travel/moteur/vol-hotel_attente_1.html
  239. booking.url.redirect=https://hotels.aeroports-voyages.fr/searchresults.html.
  240. odigeo.url.mobile=https://aeroports-voyagesmobile.travelagency.travel/Flight/Search
  241.  
  242. inkwo.iframe.url.en=https://www.incwo.com/iframe/web_to_leads/342632/155894?ref=0
  243. inkwo.iframe.url.de=https://www.incwo.com/iframe/web_to_leads/342632/155905?ref=0
  244. inkwo.iframe.url.nl=https://www.incwo.com/iframe/web_to_leads/342632/155911?ref=0
  245. inkwo.iframe.url.it=https://www.incwo.com/iframe/web_to_leads/342632/155908?ref=0
  246. inkwo.iframe.url.es=https://www.incwo.com/iframe/web_to_leads/342632/155899?ref=0
  247. inkwo.iframe.url.fr=https://www.incwo.com/iframe/web_to_leads/342632/156038?ref=0
  248.  
  249. booking.aid.default=802914
  250. booking.aid.mobile=1415129
  251.  
  252. external.hotel.baseurl=https://hotels.aeroports-voyages.fr
  253.  
  254. poolnum.clientkey=a9e8e7dc-2c01-11e3-8b42-00163ea647d4
  255. poolnum.numtype=0899
  256. poolnum.ringtime=30
  257. poolnum.maxtime=600
  258. poolnum.country=FR
  259. poolnum.tag=aeroport-voyages
  260.  
  261. local.phone=0033972443010
  262. local.phone.contact=0033972443126
  263.  
  264. XForwardedSupport=127.0.0.1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement