Something is weird. With: ``` callbackURL: process.env.DOMAIN || '' + '/auth/facebook/callback' ``` I get: `http://localhost:9000` I had to add some parenthesis to get it work: ``` callbackURL: (process.env.DOMAIN || '') + '/auth/facebook/callback' ```