6ca34a29fd
closes #10641 There is already an "icons" section in this json file, but it appears that that is only used for v0.1 in which there was a "/uploads/icon" route that passed in a "type" of "icons" to the validation middleware. However, in v2, there is only a generic "/images/upload" route that is used for both icons and images, which passes a "type" of "images" so the .ico information needs to be added to the "images" section of the json file.
83 lines
3.0 KiB
JSON
83 lines
3.0 KiB
JSON
{
|
|
"paths": {
|
|
"appRoot": ".",
|
|
"corePath": "core/",
|
|
"clientAssets": "core/built/assets",
|
|
"helperTemplates": "core/frontend/helpers/tpl/",
|
|
"adminViews": "core/server/web/admin/views/",
|
|
"defaultViews": "core/server/views/",
|
|
"defaultSettings": "core/frontend/services/settings/",
|
|
"internalAppPath": "core/frontend/apps/",
|
|
"internalStoragePath": "core/server/adapters/storage/",
|
|
"internalSchedulingPath": "core/server/adapters/scheduling/",
|
|
"migrationPath": "core/server/data/migrations",
|
|
"publicFilePath": "core/server/public"
|
|
},
|
|
"apps": {
|
|
"internal": [
|
|
"private-blogging",
|
|
"subscribers",
|
|
"amp"
|
|
]
|
|
},
|
|
"slugs": {
|
|
"reserved": ["admin", "app", "apps", "categories",
|
|
"category", "dashboard", "feed", "ghost-admin", "login", "logout",
|
|
"page", "pages", "post", "posts", "public", "register", "setup",
|
|
"signin", "signout", "signup", "user", "users", "wp-admin", "wp-login"],
|
|
"protected": ["ghost", "rss", "amp"]
|
|
},
|
|
"uploads": {
|
|
"subscribers": {
|
|
"extensions": [".csv"],
|
|
"contentTypes": ["text/csv", "application/csv", "application/octet-stream"]
|
|
},
|
|
"images": {
|
|
"extensions": [".jpg", ".jpeg", ".gif", ".png", ".svg", ".svgz", ".ico"],
|
|
"contentTypes": ["image/jpeg", "image/png", "image/gif", "image/svg+xml", "image/x-icon", "image/vnd.microsoft.icon"]
|
|
},
|
|
"icons": {
|
|
"extensions": [".png", ".ico"],
|
|
"contentTypes": ["image/png", "image/x-icon", "image/vnd.microsoft.icon"]
|
|
},
|
|
"db": {
|
|
"extensions": [".json", ".zip"],
|
|
"contentTypes": ["text/plain", "application/octet-stream", "application/json", "application/zip", "application/x-zip-compressed"]
|
|
},
|
|
"themes": {
|
|
"extensions": [".zip"],
|
|
"contentTypes": ["application/zip", "application/x-zip-compressed", "application/octet-stream"]
|
|
},
|
|
"redirects": {
|
|
"extensions": [".json"],
|
|
"contentTypes": ["text/plain", "application/octet-stream", "application/json"]
|
|
},
|
|
"routes": {
|
|
"extensions": [".yaml"],
|
|
"contentTypes": ["text/plain", "text/yaml", "application/octet-stream", "application/yaml", "application/x-yaml"]
|
|
}
|
|
},
|
|
"times": {
|
|
"cannotScheduleAPostBeforeInMinutes": 2,
|
|
"publishAPostBySchedulerToleranceInMinutes": 2,
|
|
"getImageSizeTimeoutInMS": 5000
|
|
},
|
|
"maintenance": {
|
|
"enabled": false
|
|
},
|
|
"api": {
|
|
"versions": {
|
|
"all": ["v0.1", "v2"],
|
|
"v2": {
|
|
"admin": "v2/admin",
|
|
"content": "v2/content",
|
|
"members": "v2/members"
|
|
},
|
|
"v0.1": {
|
|
"admin": "v0.1",
|
|
"content": "v0.1"
|
|
}
|
|
}
|
|
}
|
|
}
|