{
	"httpPort": 8080,
	"languageCode": "fr-fr",
	"controller": "common.js",
	"variation": "common.json",
	"pageNotFound": "/erreur.html",
	"stylus": true,
	"output": true,
	"assetsCopy": true,
	"routes": [{
		"url": "/",
		"redirect": "/index.html",
		"statusCode": 301
	},{
		"url": "/index.html",
		"view": "index.htm",
		"variation": "index.json",
		"controller": "index.js"
	}, {
		"url": "/english/index.html",
		"view": "index.htm",
		"variation": "index.json",
		"controller": "index.js",
		"languageCode": "en-us"
	}, {
		"url": "/:member([-a-z0-9]+)/:action(voir|creer)/?",
		"output": false,
		"view": "member.htm"
	}, {
		"url": "/english/:member([-a-z0-9]+)/:action(show|create)/?",
		"output": false,
		"view": "member.htm",
		"languageCode": "en-us"
	}, {
		"pug": true,
		"url": "/english/*",
		"output": "/english/error.html",
		"view": "error.htm",
		"statusCode": 404,
		"languageCode": "en-us"
	}, {
		"pug": true,
		"url": "/erreur.html",
		"view": "error.htm",
		"statusCode": 404
	}]
}