Advertisement
Guest User

Untitled

a guest
Dec 10th, 2016
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.22 KB | None | 0 0
  1. -------------------------------------------------------------
  2.  
  3. APP_ENV=local
  4. APP_KEY=base64:Mc8liTQ6MBGqmtOLF/LQN8WZ22iFTzPPXnmtLq2uXxM=
  5. APP_DEBUG=false
  6. APP_LOG_LEVEL=debug
  7. APP_URL=http://localhost
  8.  
  9. DB_CONNECTION=mysql
  10. DB_HOST=localhost
  11. DB_DATABASE=seat
  12. DB_USERNAME=seat
  13. DB_PASSWORD=F5z6be5e1umaYeyaS7yo1Ev6M3mEzi
  14. DB_DEBUG=false
  15.  
  16. BROADCAST_DRIVER=log
  17. CACHE_DRIVER=redis
  18. SESSION_DRIVER=file
  19. QUEUE_DRIVER=redis
  20.  
  21. REDIS_HOST=127.0.0.1
  22. REDIS_PASSWORD=null
  23. REDIS_PORT=6379
  24.  
  25. MAIL_DRIVER=smtp
  26. MAIL_HOST=mailtrap.io
  27. MAIL_PORT=2525
  28. MAIL_USERNAME=null
  29. MAIL_PASSWORD=null
  30. MAIL_ENCRYPTION=null
  31. MAIL_FROM_ADDRESS=noreply@localhost.local
  32.  
  33. EVE_CLIENT_ID=null
  34. EVE_CLIENT_SECRET=null
  35. EVE_CALLBACK_URL=http://seat.local/auth/eve/callback
  36.  
  37.  
  38. SUPERVISOR_RPC_ADDRESS=127.0.0.1
  39. SUPERVISOR_RPC_USERNAME=seat
  40. SUPERVISOR_RPC_PASSWORD=123
  41. SUPERVISOR_RPC_PORT=9001
  42. SUPERVISOR_GROUP=seat
  43.  
  44.  
  45.  
  46. -------------------------------------------------------------------------
  47.  
  48. ; supervisor config file
  49.  
  50. [unix_http_server]
  51. file=/var/run/supervisor.sock ; (the path to the socket file)
  52. chmod=0700 ; sockef file mode (default 0700)
  53.  
  54. [supervisord]
  55. logfile=/var/log/supervisor/supervisord.log ; (main log file;default $CWD/supervisord.log)
  56. pidfile=/var/run/supervisord.pid ; (supervisord pidfile;default supervisord.pid)
  57. childlogdir=/var/log/supervisor ; ('AUTO' child log dir, default $TEMP)
  58.  
  59.  
  60. ; the below section must remain in the config file for RPC
  61. ; (supervisorctl/web interface) to work, additional interfaces may be
  62. ; added by defining them in separate rpcinterface: sections
  63. [rpcinterface:supervisor]
  64. supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
  65.  
  66. [supervisorctl]
  67. serverurl=unix:///var/run/supervisor.sock ; use a unix:// URL for a unix socket
  68.  
  69. ; The [include] section can just contain the "files" setting. This
  70. ; setting can list multiple files (separated by whitespace or
  71. ; newlines). It can also contain wildcards. The filenames are
  72. ; interpreted as relative to this file. Included files *cannot*
  73. ; include files themselves.
  74.  
  75. [include]
  76. files = /etc/supervisor/conf.d/*.conf
  77.  
  78. [inet_http_server]
  79. port = 127.0.0.1:9001
  80. username = seat
  81. password = 123
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement