Quick Note:

If you ever get around and happend to push a Ruckus (now CommScope) Virtual SmartZone (vSZ) Access Point controller WebUi through an Nginx reverse proxy, use ‘‘add_header Access-Control-Allow-Origin *;’’. Otherwise, all you get is a blank proxy page after logging in…

Nginx Config part:

1
2
3
4
5
6
7
8
location / {
    #auth_basic            "closed site";
    #auth_basic_user_file  .htpasswd-adminpage;
    proxy_pass            https://HOST:8443/;
    add_header            Access-Control-Allow-Origin *;
    #proxy_ssl_verify      off;
    #proxy_request_buffering off;
}