You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module.exports = function(environment) {
var ENV = {
modulePrefix: 'open-ethereum-pool',
environment: environment,
rootURL: '/',
locationType: 'hash',
EmberENV: {
FEATURES: {
// Here you can enable experimental features on an ember canary build
// e.g. 'with-controller': true
}
},
APP: {
// API host and port
ApiUrl: '//137.74.130.138/',
// HTTP mining endpoint
HttpHost: 'https://pool.backslashlabs.dev',
HttpPort: 8888,
// Stratum mining endpoint
StratumHost: 'pool.backslashlabs.dev',
StratumPort: 8008,
// Fee and payout details
PoolFee: '1%',
PayoutThreshold: '0.5 Ether',
// For network hashrate (change for your favourite fork)
BlockTime: 13.0
}
};
if (environment === 'development') {
/* Override ApiUrl just for development, while you are customizing
frontend markup and css theme on your workstation.
*/
ENV.APP.ApiUrl = 'http://localhost: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;
}
Geth version 1.9.25-stable
Geth is done with syncing.
I think it is my nginx config.
Curl on localhost:8080 gives me an empty result.
Default Nginx Site
`upstream api {
server 127.0.0.1:8080;
}
server {
listen 80 default_server;
listen [::]:80 default_server;
}
server {
root /opt/open-ethereum-pool/www/dist/;
index index.html;
server_name pool.backslashlabs.dev; # managed by Certbot
}
server {
if ($host = pool.backslashlabs.dev) {
return 301 https://$host$request_uri;
} # managed by Certbot
}
`
Frontend JS Conf:
`/* jshint node: true */
module.exports = function(environment) {
var ENV = {
modulePrefix: 'open-ethereum-pool',
environment: environment,
rootURL: '/',
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://localhost: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.locationType = 'none';
}
if (environment === 'production') {
}
return ENV;
};
`
Pool Conf:
`{
"threads": 2,
"coin": "eth",
"name": "main",
}
`
OS: Ubuntu 20.04.02 LTS
Access Browser: Firefox latest
Nginx Version: 1.18.0
The text was updated successfully, but these errors were encountered: