Deploy nginx reverse proxy for RSK mainnet

This commit is contained in:
2021-11-29 13:55:04 -06:00
parent 0e1b362644
commit 584da20d3e
4 changed files with 36 additions and 15 deletions

View File

@@ -16,7 +16,7 @@ server {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Real-IP $remote_addr;
proxy_redirect off;
proxy_pass localhost:<%= @port %>;
proxy_pass http://localhost:<%= @port %>;
}
}
<% end -%>