Hi @lyhookwz,
I just tried with a fresh instance and the guide worked for me:
After following the guide, I can see that pagespeed is enabled with this command. (If it is not enabled then there is no output)
$ curl -Is http://MY_IP | grep X-Page-Speed
X-Page-Speed: 1.13.35.2-0
Also, I don't see the pagespeed configuration in your Nginx configuration. Did you delete it before running the bnsupport tool?
My server block looks like this after adding pagespeed:
server {
listen 80;
server_name localhost;
pagespeed on;
pagespeed FileCachePath /opt/bitnami/nginx/var/ngx_pagespeed_cache;
location ~ "\.pagespeed\.([a-z]\.)?[a-z]{2}\.[^.]{10}\.[^.]+" { add_header "" ""; }
location ~ "^/ngx_pagespeed_static/" { }
location ~ "^/ngx_pagespeed_beacon$" { }
#include "/opt/bitnami/nginx/conf/bitnami/phpfastcgi.conf";
include "/opt/bitnami/nginx/conf/bitnami/bitnami-apps-prefix.conf";
}