-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.js
45 lines (40 loc) · 1.16 KB
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// # Ghost Configuration
// Setup your Ghost install for various environments
// Documentation can be found at http://support.ghost.org/config/
var path = require('path'),
config;
config = {
// ### Production
// When running Ghost in the wild, use the production environment
// Configure your URL and mail settings here
production: {
url: 'xxxx',
forceAdminSSL: true,
mail: {},
database: {
client: 'mysql',
connection: {
host : process.env.RDS_HOSTNAME,
user : process.env.RDS_USERNAME,
password : process.env.RDS_PASSWORD,
database : 'ebdb',
charset : 'utf8'
}
},
fileStorage: true,
server: {
host: '0.0.0.0',
port: '2368'
},
mail: {
transport: 'SMTP',
options: {
host: 'email-smtp.eu-west-1.amazonaws.com',
port: 465,
service: 'SES'
}
}
}
};
// Export config
module.exports = config;