diff --git a/docs/ci/bare-metal.rst b/docs/ci/bare-metal.rst index 1240591429f..28ff51f59af 100644 --- a/docs/ci/bare-metal.rst +++ b/docs/ci/bare-metal.rst @@ -224,7 +224,7 @@ Enable the site and restart nginx: wget http://localhost/cache/?uri=https://s3.freedesktop.org/mesa-tracie-public/itoral-gl-terrain-demo/demo.trace Now, set ``download-url`` in your ``traces-*.yml`` entry to something like -``http://10.42.0.1:8888/cache/?uri=https://s3.freedesktop.org/mesa-tracie-public`` +``http://caching-proxy/cache/?uri=https://s3.freedesktop.org/mesa-tracie-public`` and you should have cached downloads for traces. Add it to ``FDO_HTTP_CACHE_URI=`` in your ``config.toml`` runner environment lines and you can use it for cached artifact downloads instead of going all the way to diff --git a/docs/ci/fdo-cache b/docs/ci/fdo-cache index 922cd76b240..a2d8b9d4008 100644 --- a/docs/ci/fdo-cache +++ b/docs/ci/fdo-cache @@ -1,9 +1,9 @@ proxy_cache_path /var/cache/nginx/ levels=1:2 keys_zone=my_cache:10m max_size=24g inactive=48h use_temp_path=off; server { - listen 10.42.0.1:8888 default_server; - listen 127.0.0.1:8888 default_server; - listen [::]:8888 default_server; + listen 10.42.0.1:80 default_server; + listen 127.0.0.1:80 default_server; + listen [::]:80 default_server; resolver 8.8.8.8; root /var/www/html;