This commit is contained in:
2018-05-31 21:08:20 +02:00
parent be9f0249e9
commit 6b6feb345a
2 changed files with 6 additions and 4 deletions

View File

@ -17,7 +17,7 @@
using namespace std;
string webroot = "/srv/necronda/";
const char* webroot = "/srv/necronda/";
@ -224,7 +224,7 @@ string getWebRoot(string host) {
if (fileExists(root)) {
return root;
} else {
return webroot + "www.necronda.net";
return "www.necronda.net";
}
}