Skip to content

Commit 9ffbdea

Browse files
authored
Merge pull request #666 from OpenHistoricalMap/staging
Production release - Overpass turbo update and Set minute replication limit
2 parents b928d66 + 505a316 commit 9ffbdea

File tree

5 files changed

+20
-6
lines changed

5 files changed

+20
-6
lines changed

.github/workflows/frontend-overpass.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
uses: actions/checkout@v4
4545
with:
4646
repository: OpenHistoricalMap/overpass-turbo
47-
ref: be9b87d55699a00570c1d5fcc8d4323c2d0dd0e3
47+
ref: efdce1a1979e6c33de9fa459c1b1cf6934acab6a
4848
path: overpass-turbo
4949

5050
- name: Enable Corepack

hetzner/traefik/traefik.yml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,20 @@ http:
3737
# # Trust only known proxy headers (adjust based on your infrastructure)
3838
# hostsProxyHeaders: ["X-Forwarded-Host"]
3939

40+
secure-headers-allow-iframe:
41+
headers:
42+
# Allows iframe embedding (for comparison tools)
43+
frameDeny: false
44+
# Enables XSS protection in older browsers
45+
browserXssFilter: true
46+
# Prevents browsers from MIME-sniffing (forces declared Content-Type)
47+
contentTypeNosniff: true
48+
# Enforces HTTPS via HSTS
49+
forceSTSHeader: true
50+
stsSeconds: 31536000 # 1 year
51+
stsIncludeSubdomains: true
52+
stsPreload: true
53+
4054
redirect-nominatim:
4155
redirectRegex:
4256
regex: "^https://(nominatim(?:\\.staging)?\\.openhistoricalmap\\.org)/?$"
@@ -53,7 +67,7 @@ http:
5367
tls:
5468
certResolver: letsencrypt
5569
middlewares:
56-
- secure-headers
70+
- secure-headers-allow-iframe
5771

5872
tiler_cache-production-router:
5973
rule: Host(`tiler-cache.openhistoricalmap.org`)
@@ -145,7 +159,7 @@ http:
145159
tls:
146160
certResolver: letsencrypt
147161
middlewares:
148-
- secure-headers
162+
- secure-headers-allow-iframe
149163

150164
overpass-api-staging-router:
151165
rule: Host(`overpass-api.staging.openhistoricalmap.org`)

images/web/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ RUN apt-get update && \
2424
&& apt-get clean && rm -rf /var/lib/apt/lists/*
2525

2626
# Download OHM Website using gitsha, faster than cloning
27-
ENV OPENHISTORICALMAP_WEBSITE_GITSHA=b29601a3bdccb4e8667653a16251ec8e94d78544
27+
ENV OPENHISTORICALMAP_WEBSITE_GITSHA=c37a340e8fc31c0ae6670d0b8a5b9bab24c4236a
2828
ENV OHM_WEBSITE_URL=https://github.com/OpenHistoricalMap/ohm-website/archive/${OPENHISTORICALMAP_WEBSITE_GITSHA}.zip
2929
RUN rm -rf $workdir/* && curl -fsSL $OHM_WEBSITE_URL -o /tmp/ohm-website.zip && \
3030
unzip /tmp/ohm-website.zip -d /tmp && \

ohm/requirements.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
dependencies:
22
- name: osm-seed
3-
version: '0.1.0-0.dev.git.973.hb03b96b'
3+
version: '0.1.0-0.dev.git.976.h81b6cdf'
44
repository: https://devseed.com/osm-seed-chart/

values.staging.template.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ osm-seed:
336336
enabled: true
337337
name: ohm-s3-bucket-access-staging
338338
env:
339-
ENABLE_SEND_SLACK_MESSAGE: "true"
339+
ENABLE_SEND_SLACK_MESSAGE: "false"
340340
SLACK_WEBHOOK_URL: {{OHM_SLACK_WEBHOOK_URL}}
341341
resources:
342342
enabled: false

0 commit comments

Comments
 (0)