peanutheroo

Untitled

Apr 27th, 2016
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. // # Ghost Configuration
  2. // Setup your Ghost install for various [environments](http://support.ghost.org/config/#about-environments).
  3.  
  4. // Ghost runs in `development` mode by default. Full documentation can be found at http://support.ghost.org/config/
  5.  
  6. var path = require('path'),
  7. config;
  8.  
  9. config = {
  10. // ### Production
  11. // When running Ghost in the wild, use the production environment.
  12. // Configure your URL and mail settings here
  13. production: {
  14. url: 'http://blog.sylfaen.fr',
  15. mail: {},
  16. database: {
  17. client: 'mysql',
  18. connection: {
  19. host : '127.0.0.1',
  20. user : 'ghostBlog',
  21. password : '',
  22. database : 'ghostBlog',
  23. charset : 'utf8'
  24. }
  25. },
  26.  
  27. server: {
  28. host: '127.0.0.1',
  29. port: '2368'
  30. }
  31. },
  32.  
  33. // ### Development **(default)**
  34. development: {
  35. // The url to use when providing links to the site, E.g. in RSS and email.
  36. // Change this to your Ghost blog's published URL.
  37. url: 'http://localhost:2368',
Add Comment
Please, Sign In to add comment