Skip to content

Connect via port 3000 on ubuntu #3

@Penderis

Description

@Penderis

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:
image

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
image

Then it runs fine
image

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions