add socketTransportProtocols parameter

This commit is contained in:
Wikinaut 2012-12-02 18:28:28 +01:00
parent e9e4d65ad4
commit 8b044254cc
3 changed files with 17 additions and 2 deletions

View file

@ -29,6 +29,13 @@
*/
// restricts socket.io transport methods to JSONP-POLLING only
// which is needed for IE8 browsers with deactivated native XMLHTTP support
// see issue https://github.com/ether/etherpad-lite/pull/958
// and https://github.com/ether/etherpad-lite/issues/245#issuecomment-4013455
"socketTransportProtocols" : ['xhr-polling', 'jsonp-polling', 'htmlfile'],
//The Type of the database. You can choose between dirty, postgres, sqlite and mysql
//You shouldn't use "dirty" for for anything else than testing or development
"dbType" : "dirty",