Not valid config JSON

Hi.
Trying to add s3 storage to Ghost but when adding the storage block to the config.production.json and running ghost doctor after I get the error “Config file is not valid JSON”

Heres the config:

{
	"url": "removed",
	"server": {
		"port": 2368,
		"host": "127.0.0.1"
	},
	"database": {
		"client": "mysql",
		"connection": {
			"host": "removed",
			"user": "removed",
			"password": "removed",
			"database": "removed"
		}
	},
	"mail": {
		"transport": "Direct"
	},
	"logging": {
		"transports": [
			"file",
			"stdout"
		]
	},
	"process": "systemd",
	"paths": {
		"contentPath": "/var/www/ghost/content"
	},
	"storage": {
		"active": "s3",
		"s3": {
			"accessKeyId": "removed",
			"secretAccessKey": "removed",
			"region": "eu-west-1",
			"bucket": "removed",
			"forcePathStyle": true
		},

Can anyone help me out with what is wrong here?

Thanks.

You are missing some closing brackets. Try this

{
	"url": "removed",
	"server": {
		"port": 2368,
		"host": "127.0.0.1"
	},
	"database": {
		"client": "mysql",
		"connection": {
			"host": "removed",
			"user": "removed",
			"password": "removed",
			"database": "removed"
		}
	},
	"mail": {
		"transport": "Direct"
	},
	"logging": {
		"transports": [
			"file",
			"stdout"
		]
	},
	"process": "systemd",
	"paths": {
		"contentPath": "/var/www/ghost/content"
	},
	"storage": {
		"active": "s3",
		"s3": {
			"accessKeyId": "removed",
			"secretAccessKey": "removed",
			"region": "eu-west-1",
			"bucket": "removed",
			"forcePathStyle": true
		}
    }
}