Skip to content

Commit aa28777

Browse files
authored
Merge pull request #56 from boegel/fix_proxy_acl
2 parents 1b3f39a + bf8c895 commit aa28777

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches: main
66
jobs:
77
build:
8-
runs-on: ubuntu-20.04
8+
runs-on: ubuntu-24.04
99
steps:
1010
- name: checkout
1111
uses: actions/checkout@v2
@@ -15,7 +15,7 @@ jobs:
1515
- name: set up Python
1616
uses: actions/setup-python@v1
1717
with:
18-
python-version: 3.8
18+
python-version: 3.9
1919

2020
- name: install mkdocs
2121
run: |

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ name: build tutorial
33
on: [push, pull_request]
44
jobs:
55
build:
6-
runs-on: ubuntu-20.04
6+
runs-on: ubuntu-24.04
77
steps:
88
- name: checkout
99
uses: actions/checkout@v2
1010

1111
- name: set up Python
1212
uses: actions/setup-python@v1
1313
with:
14-
python-version: 3.8
14+
python-version: 3.9
1515

1616
- name: Codespell action
1717
uses: codespell-project/actions-codespell@master

docs/access/proxy.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,9 @@ You can use the following template for this:
5656
acl local_nodes src YOUR_CLIENT_IPS
5757
5858
# Destination domains that are allowed
59-
acl stratum_ones dstdomain .YOURDOMAIN.ORG
59+
# cern.ch + opensciencegrid.org domains because of cvmfs-config.cern.ch repository,
60+
# which are provided via Stratum-1 mirror servers hosted by CERN and OSG
61+
acl stratum_ones dstdomain .cern.ch .opensciencegrid.org .YOURDOMAIN.ORG
6062
6163
# Squid port
6264
http_port 3128
@@ -92,7 +94,8 @@ In this template, you *must* change two things in the Access Control List (ACL)
9294
For example, to allow connecting to the EESSI Stratum 1 replica servers, use:
9395

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

98101
Note that this configuration assumes that port 3128 is accessible on the proxy server.

docs/configuration_hpc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ The last scenario that we cover here is for HPC systems that do not have the Cer
126126
installed on the worker nodes, for example because the system administrators are not willing to install,
127127
configure, and maintain a CernVM-FS installation.
128128

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

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

0 commit comments

Comments
 (0)