CenturyLinkLabs / panamax-ui

The Web GUI for Panamax
http://panamax.io
Apache License 2.0
1.44k stars 151 forks source link

access panamax.local:3000 from outside #555

Open Cellenta opened 8 years ago

Cellenta commented 8 years ago

Hey, I am working on MacOS and I have access to the server via SSH. How can I forward this local site to a client, so I can access from any other computer in my office?

jantonacci commented 8 years ago

For one-time access, you can use SSH tunnels then open http;//localhost:3000/ :

image

On Ubuntu, I installed nginx and configured a reverse proxy to the Panamax URL:

server {
    listen 3000;
    server_name localhost;
    root html;
    index index.html index.htm;
    ssl on;
    ssl_certificate cert.pem;
    ssl_certificate_key cert.key;
    ssl_session_timeout 5m;
    ssl_protocols TLSv1.2;
    ssl_ciphers "HIGH:!aNULL:!MD5 or HIGH:!aNULL:!MD5:!3DES";
    ssl_prefer_server_ciphers on;

    location / {
        proxy_pass http://10.0.0.200:3000/;
        proxy_read_timeout 60s;
        proxy_set_header          X-Real-IP       $remote_addr;
        proxy_set_header          X-Forwarded-For $proxy_add_x_forwarded_for;
    }
}
server {
    listen 3002;
    server_name localhost;
    root html;
    index index.html index.htm;
    ssl on;
    ssl_certificate cert.pem;
    ssl_certificate_key cert.key;
    ssl_session_timeout 5m;
    ssl_protocols TLSv1.2;
    ssl_ciphers "HIGH:!aNULL:!MD5 or HIGH:!aNULL:!MD5:!3DES";
    ssl_prefer_server_ciphers on;

    location / {
        proxy_pass http://10.0.0.200:3002/;
        proxy_read_timeout 60s;
        proxy_set_header          X-Real-IP       $remote_addr;
        proxy_set_header          X-Forwarded-For $proxy_add_x_forwarded_for;
    }
}