{"id":20747323,"url":"https://github.com/ether1project/public-rpc-setup","last_synced_at":"2026-01-30T03:10:49.783Z","repository":{"id":43218241,"uuid":"297642756","full_name":"Ether1Project/public-rpc-setup","owner":"Ether1Project","description":null,"archived":false,"fork":false,"pushed_at":"2022-03-12T19:03:12.000Z","size":3,"stargazers_count":0,"open_issues_count":1,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-06-05T15:45:59.130Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Ether1Project.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-09-22T12:32:26.000Z","updated_at":"2020-09-22T12:44:37.000Z","dependencies_parsed_at":"2022-09-11T23:10:38.976Z","dependency_job_id":null,"html_url":"https://github.com/Ether1Project/public-rpc-setup","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Ether1Project/public-rpc-setup","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ether1Project%2Fpublic-rpc-setup","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ether1Project%2Fpublic-rpc-setup/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ether1Project%2Fpublic-rpc-setup/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ether1Project%2Fpublic-rpc-setup/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Ether1Project","download_url":"https://codeload.github.com/Ether1Project/public-rpc-setup/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ether1Project%2Fpublic-rpc-setup/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28897845,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-29T21:06:44.224Z","status":"online","status_checked_at":"2026-01-30T02:00:06.810Z","response_time":66,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-17T08:12:42.987Z","updated_at":"2026-01-30T03:10:49.754Z","avatar_url":"https://github.com/Ether1Project.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# public-rpc-setup\n\n### This guide will show you how to setup a public rpc node for Ether-1\n\n#### Setting Up the Server \u0026 Building geth\n\n```bash\napt-get update\napt-get upgrade -y\napt-get install build-essential nano git\n\nwget https://golang.org/dl/go1.15.2.linux-amd64.tar.gz\nsudo tar -xvf go1.15.2.linux-amd64.tar.gz\nsudo mv go /usr/local\n\nnano ~/.profile\n\n# Add the lines below to the bottom of the file\nexport GOROOT=/usr/local/go\nexport GOPATH=$ROOT\nexport PATH=$GOPATH/bin:$GOROOT/bin:$PATH\n\n# Exit nano with CRTL+X (Make sure you save)\n\nsource ~/.profile\n\ngit clone https://github.com/Ether1Project/Ether1 \u0026\u0026 cd Ether1 \u0026\u0026 make \u0026\u0026 cd\n\n```\n\n### Installing nginx \u0026 Setting up the services\n\n```bash \nsudo apt-get install nginx \n\nnano /etc/systemd/system/ether1node.service\n\n# Copy and paste the following into the file - remember to replace \u003cname\u003e with your node name\n\n[Unit]\nDescription=RPC Node\nAfter=network.target\n[Service]\nUser=root\nGroup=root\nType=simple\nRestart=always\nExecStart=/root/Ether1/build/bin/geth --cache=512 --rpcvhosts=\"*\" --rpc --rpcport \"8545\" --rpcaddr \"127.0.0.1\" --rpccorsdomain \"*\" --nat \"any\" --rpcapi \"eth,web3,personal,net\" --syncmode \"full\" -ethstats \"\u003cname\u003e:ether1stats@stats.ether1.org\"\n[Install]\nWantedBy=default.target\n\n# Exit nano - save your changes!\n\nsystemctl enable ether1node \u0026\u0026 systemctl start ether1nod\n\nnano /etc/nginx/sites-enabled/default\n\n# Use CRTL+K to clear out the files contents \u0026 replace with the below - Replace RPC_URL_HERE with your rpc url for example: rpc.ether1.org\n\nserver {\nserver_name RPC_URL_HERE;\n\n location / {\n      proxy_pass http://localhost:8545/;\n      proxy_set_header Host $host;\n }\n}\n\n# Exit nano - save your changes!\n\nsystemctl restart nginx\n```\n\n#### Enable SSL\n\n```bash\n\nsudo apt install snapd\n\nsudo snap install --classic certbot\n\n# Read instructions from the next command carefully\nsudo certbot --nginx  \n\n# Test Automatic SSL Cert Renewal\nsudo certbot renew --dry-run\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fether1project%2Fpublic-rpc-setup","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fether1project%2Fpublic-rpc-setup","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fether1project%2Fpublic-rpc-setup/lists"}