SS/TLS from GoDaddy

got ya.
any tips on reverse proxy config ? (pangolin)
I tried changing nginx site available to 8080 and point my reverse proxy to pbx_local_ip:8080 but it doesn't work :/
 
Last edited:
Let's Encrypt requirement was to have this in the Nginx config file


Code:
server {
    listen 80 default_server;
    listen [::]:80 default_server;
    server_name _;

    location ^~ /.well-known/acme-challenge/ {
        default_type "text/plain";
        root /var/www/fspbx/public;
        try_files $uri =404;
    }

    location / {
        return 301 https://$host$request_uri;
    }
}

We also ship another port 80 block, which you may still have in your settings. You may need to ask AI to figure out the solution for you between the two blocks to make sure it works for your case.
 
thanks for now i restored to the 1.9.0 and will give it another try later. appreciate your help.
 
Last edited: