Skip to main content

General Settings

Now that Pi-Star is dead, the alternative, WPSD is used. Here are the things I've got about it - this page will be a mess until I can get it all dialed in and when that happens, I will reorganize this into something useful and logical.

 

Set hotspot to "public" so that you don't have to set the hotspot's RID to match your actual radio (this allows the hotspot to accept any radio id transmitting)

Edit the MMDVM host under Admin-Advanced-Full Editors-MMDVM Host, set SelfOnly=0 (change from 1)

 

 

NGINX to forward ports to the hblink3 server:

server {
    listen 80;
    server_name your_domain_name;

    location / {
        proxy_pass http://192.168.0.168:55555;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;  

    }

    location /port1 {
        proxy_pass http://192.168.0.168:54015;
        # ... other proxy headers
    }

    location /port2 {
        proxy_pass http://192.168.0.168:62003;
        # ... other proxy headers
    }
}