• HTTPS

    By Urs Meli 10 years ago

    If you want to have the wiki behind https you need to patch the javascript in
    idcWiki.js

    if (window.location.protocol == “https:“) {

    var host = window.location.hostname;
    var pathname = window.location.pathname;
    var search = window.location.search;
    var hash = window.location.hash;
    

    –>Old://var url = “http://” + host + pathname + search + hash;
    –>New: var url = “https://” + host + pathname + search + hash;

    location.replace(url);
    

    }

    Otherwise the page will keep loading forever