// The public acccess URL of your repository. It is used to populate the fields on the tracker issue.
"repositoryUrl": "git://github.com/YourGitHub/moodle.git",
+ // The scheme to set during an install (http or https)
+ "scheme": "http",
// The host name to set during an install
"host": "localhost",
// Path to your Moodle instances, http://host/path/ should point to dirs.www.
db.selectdb(dbname)
# Defining wwwroot.
- wwwroot = 'http://%s/' % C.get('host')
+ wwwroot = '%s://%s/' % (C.get('scheme'), C.get('host'))
if C.get('path') != '' and C.get('path') != None:
wwwroot = wwwroot + C.get('path') + '/'
wwwroot = wwwroot + self.identifier