Guest User

Untitled

a guest
Jun 8th, 2015
303
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 0.80 KB | None | 0 0
  1. #
  2. # WARNING: it is CRITICAL that this file & directory are NOT accessible directly via a web browser!
  3. # http://nette.org/security-warning
  4. #
  5.  
  6. #connection to database on product server and the others parametrs
  7. parameters:
  8.  
  9.  
  10. php:
  11.     date.timezone: Europe/Prague
  12.  
  13.  
  14. application:
  15.     errorPresenter: Error
  16.     mapping:
  17.         *: App\*Module\Presenters\*Presenter
  18.  
  19. session:
  20.     expiration: 1 days
  21.  
  22. restful:
  23.     convention: 'snake_case'
  24.     cacheDir: '%tempDir%/cache'
  25.     jsonpKey: 'jsonp'
  26.     prettyPrintKey: 'pretty'
  27.     routes:
  28.         prefix: ''
  29.         module: 'RestApi'
  30.         autoGenerated: TRUE
  31.         panel: FALSE
  32.  
  33. #router defination, autorization, authentization and the others
  34. services:
  35.     - App\Forms\SignFormFactory
  36.     router: App\RouterFactory::createRouter
  37.     authenticator: MyAuthenticator
Advertisement
Add Comment
Please, Sign In to add comment