Skip to content

update proxy ACL to also cover cern.ch and opensciencegrid.org domains #56

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
May 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches: main
jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: checkout
uses: actions/checkout@v2
Expand All @@ -15,7 +15,7 @@ jobs:
- name: set up Python
uses: actions/setup-python@v1
with:
python-version: 3.8
python-version: 3.9

- name: install mkdocs
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ name: build tutorial
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: checkout
uses: actions/checkout@v2

- name: set up Python
uses: actions/setup-python@v1
with:
python-version: 3.8
python-version: 3.9

- name: Codespell action
uses: codespell-project/actions-codespell@master
Expand Down
7 changes: 5 additions & 2 deletions docs/access/proxy.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ You can use the following template for this:
acl local_nodes src YOUR_CLIENT_IPS

# Destination domains that are allowed
acl stratum_ones dstdomain .YOURDOMAIN.ORG
# cern.ch + opensciencegrid.org domains because of cvmfs-config.cern.ch repository,
# which are provided via Stratum-1 mirror servers hosted by CERN and OSG
acl stratum_ones dstdomain .cern.ch .opensciencegrid.org .YOURDOMAIN.ORG

# Squid port
http_port 3128
Expand Down Expand Up @@ -92,7 +94,8 @@ In this template, you *must* change two things in the Access Control List (ACL)
For example, to allow connecting to the EESSI Stratum 1 replica servers, use:

```{ .apache .copy }
acl stratum_ones dstdomain .eessi.science
# public Stratum-1 mirror servers for EESSI are hosted under eessi.science domain
acl stratum_ones dstdomain .cern.ch .opensciencegrid.org .eessi.science
```

Note that this configuration assumes that port 3128 is accessible on the proxy server.
Expand Down
2 changes: 1 addition & 1 deletion docs/configuration_hpc.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ The last scenario that we cover here is for HPC systems that do not have the Cer
installed on the worker nodes, for example because the system administrators are not willing to install,
configure, and maintain a CernVM-FS installation.

Though less ideal than a native installaton of CernVM-FS, solutions to make CernVM-FS repositories accessible
Though less ideal than a native installation of CernVM-FS, solutions to make CernVM-FS repositories accessible
even in this case exist:

* [Syncing a to another filesystem](#sync-other-filesystem)
Expand Down