The RTCConfiguration is passed into the RTCPeerConnection object to initialize the ice server configuration.
Example
var configuration = { iceServers: [{ url: "stun:stun.services.mozilla.com",
username: "louis@mozilla.com",
credential: "webrtcdemo" }]
}
var pc = new RTCPeerConnection(configuration);