-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[HELP] Stats API Temporarily Down #74
Comments
It isn't a bug, only a missconfiguration due user ... closed |
How do to work? Don't found api/stats in folder Disk. http://127.0.0.1/api/stats Sorry, i'm novice user in Ubuntu and Github :/ |
read the README.md and misc nginx.conf ... |
Where i set ApiUrl: to http://mastermining.net/, work. But, where i change to "127.0.0.1/". Don't work |
looks like you got it working. This can be closed now? |
I'm having the same issue, this is the steps i followed: 1 ls |
if you can't fix it, you should not run a pool ... |
I can't get the frontend to work, and I know that the problem has to do with my nginx config.
"Stats API Temporarily Down"
NGINX Config:
upstream api {
server 127.0.0.1:8080;
}
server {
listen 80 default_server;
listen [::]:80 default_server;
}
Environment.js
/* jshint node: true */
module.exports = function(environment) {
var ENV = {
modulePrefix: 'pool',
environment: environment,
baseURL: '/',
locationType: 'hash',
EmberENV: {
FEATURES: {
// Here you can enable experimental features on an ember canary build
// e.g. 'with-controller': true
}
},
};
if (environment === 'development') {
/* Override ApiUrl just for development, while you are customizing
frontend markup and css theme on your workstation.
*/
ENV.APP.ApiUrl = 'http://localhot:8080/'
//ENV.APP.LOG_RESOLVER = true;
//ENV.APP.LOG_ACTIVE_GENERATION = true;
//ENV.APP.LOG_TRANSITIONS = true;
//ENV.APP.LOG_TRANSITIONS_INTERNAL = true;
//ENV.APP.LOG_VIEW_LOOKUPS = true;
}
if (environment === 'test') {
// Testem prefers this...
ENV.baseURL = '/';
ENV.locationType = 'none';
}
if (environment === 'production') {
}
return ENV;
};
Config.json
{
"threads": 2,
"coin": "etc",
"name": "main",
}
The text was updated successfully, but these errors were encountered: