WordPress + Nginx on non-standard port behind AWS ELB results in broken links



PHP Snippet 1:

    server {
        listen 8088 default_server;

        root /var/www/html;
        index index.php;
        include /etc/nginx/mime.types;
        client_max_body_size 64M;
        location / {
                # First attempt to serve request as file, then
                # as directory, then fall back to displaying a 404.
               try_files $uri $uri/ =404;
       }
        location /blog {
            try_files $uri $uri/ /blog/index.php?$args;
            rewrite ^/blog/wp-json/(.*?)$ /blog/index.php?rest_route=/$1 last;
                proxy_set_header X-Real-IP  $remote_addr;
                proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
             proxy_set_header Host $host;
}
        location ~ \.php$ {
            try_files $uri $uri/ /blog/index.php$is_args$args;

            fastcgi_split_path_info ^(/blog/.+\.php)(.*)$;
            fastcgi_param   SCRIPT_FILENAME         $document_root$fastcgi_script_name;
            fastcgi_param   PATH_INFO               $fastcgi_path_info;

            fastcgi_read_timeout 3600s;
            fastcgi_buffer_size 128k;
            fastcgi_buffers 4 128k;
            fastcgi_index  index.php;

            include        /etc/nginx/fastcgi_params;
            fastcgi_pass   unix:/run/php/php7.4-fpm.sock;
        }

        location ~* \.(eot|otf|ttf|woff|woff2)$ {
            add_header Access-Control-Allow-Origin *;
            }
    
    }