Add these tags to the home page of your proxy site!

benrogo:index tag

<meta property="benrogo:index" content="INDEX_STATUS">

INDEX_STATUS can be either index or noindex. Setting it to noindex will prevent your site from being indexed on linkies. Default is index if the tag is not there. Useful for if you have a development site you don't want leaked!!

benrogo:uvpath tag

<meta property="benrogo:uvpath" content="PATH_TO_UV_CONFIG">

PATH_TO_UV_CONFIG should be a relative path to your uv.config.js file, such as /static/uv/uv.config.js. This is not necessary but speeds up indexing. If not specified, Benrogo will scan several common paths for uv.config.js instead. If the file path given here returns a 404, your site will not be indexed

Place these tags in your home page

Add them somewhere between <head> and </head> in your HTML.

Example:

<head>
    <title>Super epic proxy site</title>
    <link rel="stylesheet" href="/index.css">
    <meta property="benrogo:index" content="index">
    <meta property="benrogo:uvpath" content="/static/uv/uv.config.js">
</head>