Module: Mesa Branch: main Commit: e389234a5e1c52ccaa74568cf50e98027f278d8f URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=e389234a5e1c52ccaa74568cf50e98027f278d8f
Author: David Heidelberg <[email protected]> Date: Tue Aug 1 23:37:46 2023 +0300 docs/ci: default to port 80 for the caching proxy Also use `caching-proxy` as a name which is automatically generated from `NFS_SERVER_IP`. Signed-off-by: David Heidelberg <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24445> --- docs/ci/bare-metal.rst | 2 +- docs/ci/fdo-cache | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) 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;
