Skip to content

Commit

Permalink
Copyrights; nginx config and visual fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
AlmazDelDiablo committed Mar 3, 2018
1 parent fb18da7 commit ac93c3d
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 14 deletions.
16 changes: 6 additions & 10 deletions README.md
Expand Up @@ -68,17 +68,13 @@ Configure nginx to serve <code>www/dist</code> as static website.

#### Serving API using nginx

Create an upstream for API:
Add this setting after <code>location /</code>:

upstream api {
server 127.0.0.1:8080;
}

and add this setting after <code>location /</code>:

location /api {
proxy_pass http://api;
}
location /api {
if ($request_uri ~* "/api/(.*)") {
proxy_pass http://127.0.0.1:8080/apietc/$1;
}
}

#### Customization

Expand Down
9 changes: 7 additions & 2 deletions www/app/index.html
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Ethereum Mining Pool</title>
<title>Ethereum Classic Mining Pool</title>
<meta name="description" content="High profitability Ethereum mining pool"/>
<meta name="keywords" content="ethereum, pool, mining, cryptocurrency"/>
<script src="https://cdn.polyfill.io/v1/polyfill.min.js?features=Intl.~locale.en"></script>
Expand All @@ -23,12 +23,17 @@

<footer class="footer">
<div class="container">
<p class="text-muted">&copy; LeChuckDE 2016 |
<p class="text-muted">&copy; LeChuckDE & M.E.O.W. Software, 2018 |
Powered by <a href="https://github.com/LeChuckDE/open-ethereumclassic-pool" target="_blank">open-ethereumclassic-pool</a> |
<br />
<strong>ETH:</strong>
<a href="http://gastracker.io/addr/0x9d837c82bc326ea0c31e15509007f184df75245e" rel="nofollow" target="_blank">
0x9d837c82bc326ea0c31e15509007f184df75245e
</a>
|
<a href="http://gastracker.io/addr/0x3e5fa593cc781a0689123390fa9b087e7b4ac673" rel="nofollow" target="_blank">
0x3e5fa593cc781a0689123390fa9b087e7b4ac673
</a>
</p>
</div>
</footer>
Expand Down
2 changes: 1 addition & 1 deletion www/app/styles/app.css
Expand Up @@ -14,7 +14,7 @@ body {
bottom: 0;
width: 100%;
/* Set the fixed height of the footer here */
height: 60px;
height: 80px;
background-color: #f5f5f5;
}

Expand Down
2 changes: 1 addition & 1 deletion www/app/templates/index.hbs
Expand Up @@ -3,7 +3,7 @@
<div class="row">
<div class="col-md-5">
<h1 style="font-size: 24px">
<strong>Open Ethereum Classic Pool</strong>
<strong>Ethereum Classic Pool</strong>
</h1>
<strong>Min. payout threshold: {{config.PayoutThreshold}}</strong>, Payouts run twice per day.<br/>
<span class="label label-success">PROP</span> Stable and profitable pool with regular payouts.
Expand Down

0 comments on commit ac93c3d

Please sign in to comment.