I've been trying to setup keter for my yesod website, but I'm running into a bit of problems with the following:
Welcome to Keter
The hostname you have provided, 127.0.0.1:3000, is not recognized.
From what I gather, it's related to the host value in some settings file.
So, my question is, is it in the config file for keter, or is it app specific? (I'm using the yesod framework), and what exactly should it be set to?
EDIT:
Thanks to snoyberg for pointing out that the ip was wrong (had completely overlooked it), it's been changed now.
To update the question a bit
I checked the error log files for the app, and it said:
HsCMS: user error (SQLite3 returned ErrorCan'tOpen while attempting to perform open "HsCMS_production.sqlite3".)
This would seem to have something to do with permissions. This happens when starting keter with sudo (even tried starting as root), but it doesn't happen if i go into /opt/keter/temp and do ./dist/build/HsCMS/HsCMS from there. So, is this a bug with keter (which i doubt) or am i doing something wrong? Shouldn't sudo be enough to give permissions to keter?
UPDATE/SOLUTION
Thanks to snoyberg for helping me narrow the problem to a permissions problem. The problem in my case was that I had, stupidly, set the setuid in the config to a user, and thus it didn't have permissions in the folder. I'm accepting snoybergs answer, because it was what lead to this solution.