-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
Hi, I have git cloned the repo and installed the latest version of Go on an Ubuntu server.
From the instructions it seems a simple case of just running the main.go file
Everything runs fine until it gets to a specific directory creation point:

I have manually created the directory structure "data/badger" inside my cloned folder
then I got a IPFS PubSub error and enabled it by adding the UsePubsub flag in the config under IPNS

I can't however access the POA on localhost:3000 , I am using a simple reverse proxy which works for the IPFS webui on port 5001 but POA gives a gateway error as though nothing is actually running on localhost:3000
server {
listen 80;
listen [::]:80;
server_name mypoasite.com;
location / {
proxy_pass http://127.0.0.1:3000;
proxy_set_header Host $host;
allow all;
}
auth_basic "Authentication Required";
auth_basic_user_file /etc/nginx/.htpasswd;
}
Any advice appreciated thank you.
Metadata
Metadata
Assignees
Labels
No labels
