rClone Mount Vs Http Serve

@ncw thanks for your reply

This was your reply on my other thread when i start using rclone serve http

my rclone serve http cmd is below

rclone serve http --template templatefile web:web --dir-cache-time 5000h --vfs-cache-mode full --vfs-cache-max-age 150h --vfs-cache-max-size 200G --cache-dir /www/wwwroot/cache --log-file /www/wwwroot/rclone.log --no-seek --tpslimit 12 --tpslimit-burst 12

and for proxy as im using nginx, i added these lines in my nginx config

    
        location / {
        proxy_set_header X-Real-IP  $remote_addr;
        proxy_set_header X-Forwarded-For $remote_addr;
        proxy_set_header Host $host;
        proxy_pass http://127.0.0.1:8080;
    }

disabled main config file and only using these line in my nginx config file
Thanks again