Does the nginx configuration specify the path as the download directory?

server {
    listen       80;        -sharp
    server_name  localhost;   -sharp
    index  index.html;
    charset utf-8; -sharp 
    root    /data/static;  -sharp

    location / {
        autoindex on;             -sharp
        autoindex_exact_size off; -sharp byteskbmbgb
        autoindex_localtime on;   -sharp  GMT 
    }
}

I set up the download server through nginx . When I open my server 118.118.118.118 , it displays a list of files in one of my / data/static directories.

now I don"t want to change 118.118.118.118 to 118.118.118.118/download
I have tried the following operations

    -sharp ...
    location /download {
         -sharp...
    }
    -sharp ...
    location ~/download {
         -sharp...
    }
    -sharp ...
    location / {
        root download;
         -sharp...
    }

can not be successful, so I would like to ask how to set it?

Apr.14,2021

location /download {
    alias /data/static;
    autoindex on;             -sharp
    autoindex_exact_size off; -sharp byteskbmbgb
    autoindex_localtime on;   -sharp  GMT 
}
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3b601-2c296.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3b601-2c296.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?