Advertisement
Guest User

Untitled

a guest
Dec 10th, 2016
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.18 KB | None | 0 0
  1. .env -----------------------------------------
  2.  
  3. APP_ENV=local
  4. APP_KEY=
  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=
  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=hd@rjf&@921aJlw0
  41. SUPERVISOR_RPC_PORT=9000
  42. SUPERVISOR_GROUP=seat
  43.  
  44. ----------------------------------------------------------------------------------------------------------
  45.  
  46.  
  47. ; supervisor config file
  48.  
  49. [unix_http_server]
  50. file=/var/run/supervisor.sock ; (the path to the socket file)
  51. chmod=0700 ; sockef file mode (default 0700)
  52.  
  53. [supervisord]
  54. logfile=/var/log/supervisor/supervisord.log ; (main log file;default $CWD/supervisord.log)
  55. pidfile=/var/run/supervisord.pid ; (supervisord pidfile;default supervisord.pid)
  56. childlogdir=/var/log/supervisor ; ('AUTO' child log dir, default $TEMP)
  57.  
  58.  
  59. ; the below section must remain in the config file for RPC
  60. ; (supervisorctl/web interface) to work, additional interfaces may be
  61. ; added by defining them in separate rpcinterface: sections
  62. [rpcinterface:supervisor]
  63. supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
  64.  
  65. [supervisorctl]
  66. serverurl=unix:///var/run/supervisor.sock ; use a unix:// URL for a unix socket
  67.  
  68. ; The [include] section can just contain the "files" setting. This
  69. ; setting can list multiple files (separated by whitespace or
  70. ; newlines). It can also contain wildcards. The filenames are
  71. ; interpreted as relative to this file. Included files *cannot*
  72. ; include files themselves.
  73.  
  74. [include]
  75. files = /etc/supervisor/conf.d/*.conf
  76.  
  77. [inet_http_server]
  78. port = 127.0.0.1:9001
  79. username = seat
  80. password = hd@rjf&@921aJlw0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement