1. You can either automatically copy the bans.cfg to the web-directory or use this php script:

    Code:
    <?php    $fileDir = '/home/rust/server/my_server1/cfg/bans.cfg';    if (file_exists($fileDir))
        {
            $contents = file_get_contents($fileDir);        echo nl2br($contents);
        }?>
    Create a PHP File with a name you want and put the script in it.
    Change the $fileDir to the directory of your bans.cfg file. Open your webbrowser and direct to the php file.
    There you can see your ban list.
     
  2. Thanks.