I am trying to show three variant bitrate streams from nginx. Source bitrate stream is ok but where can i find the multi bitrate playlist. Is there any problem with my config file? Here is my nginx.conf

Code:
#user  nobody;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}

rtmp {
    server {
        listen 1935;

        application live {
             allow publish all;
             allow play all;
             live on;

             exec ffmpeg -i rtmp://localhost/show/$name
                        -c:v libx264 -c:a libfdk_aac -b:v 256k -b:a 32k
                        -f flv rtmp://localhost/show/$name_low
                        -c:v libx264 -c:a libfdk_aac -b:v 768k -b:a 96k
                        -f flv rtmp://localhost/show/$name_mid
                        -c:v libx264 -c:a libfdk_aac -b:v 1024k -b:a 128k
                        -f flv rtmp://localhost/show/$name_high
                        -c copy -f flv rtmp://localhost/show/$name_src;
        }

        application show {
            live on;
            hls on;
            hls_path /mnt/hls;
            hls_fragment 15s;

            hls_variant _low BANDWIDTH=320000;
            hls_variant _mid BANDWIDTH=960000;
            hls_variant _hi  BANDWIDTH=1280000;
           
        }

    }
}

http {

    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    server {

        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        error_page  404              /404.html;
        error_page  500 502 503 504  /50x.html;

        location / {
            root   html;
            index  index.html index.htm;
        }

        location /hls {
            # Serve HLS fragments
            types {
                application/vnd.apple.mpegurl m3u8;
                video/mp2t ts;
            }
            root /mnt;
            add_header Cache-Control no-cache;
            add_header 'Access-Control-Allow-Origin' '*';
        }

        location /vod {
            root html;
        }

        location /dash {
            root /mnt;
            add_header Cache-Control no-cache;
            add_header 'Access-Control-Allow-Origin' '*';
        }

        location /stat {
            rtmp_stat all;
            rtmp_stat_stylesheet stat.xsl;
        }
        location /stat.xsl {
            root html;
        }
    }
}
Where can i find my multi bitrate playlist file.
Thanks.