Skip to content
Snippets Groups Projects
Commit ba5462ba authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Insure the web RootDirectory ends in a slash.

Reported by Compctech via DOVE-Net:

"On a side note,  I had to modify the letsyncrypt.js file to get letsencrypt to
work.  I had to add a / before .well-known on lines 86 - 89 & 96."

I'm guessing this is because his sbbs.ini [Web] RootDirectory wasn't terminated with a slash.
parent 5509c20c
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #2536 passed
......@@ -177,7 +177,7 @@ var sysop_email = "sysop@" + system.inet_addr;
/*
* Now read the settings and state.
*/
webroots[sbbsini.web.host_name] = sbbsini.web.root_dir;
webroots[sbbsini.web.host_name] = backslash(sbbsini.web.root_dir);
if (settings.open("r")) {
domain_list = settings.iniGetObject("Domains");
for (i in domain_list) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment