From 541dd625b59b4ca0355e58717f422be38226a9e2 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Tue, 2 Apr 2024 09:25:47 -0500 Subject: [PATCH] r/web/hlc: Proxy for Enrollment 2024 form The summer 2024 enrollment form is more complicated than the other forms on the HLC site, as it integrates directly with Invoice Ninja. As such, it's handled by a different backend, which runs in Kubernetes. --- .../files/hatchlearningcenter.org.httpd.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/roles/websites/hatchlearningcenter.org/files/hatchlearningcenter.org.httpd.conf b/roles/websites/hatchlearningcenter.org/files/hatchlearningcenter.org.httpd.conf index 1802e74..3e22cd8 100644 --- a/roles/websites/hatchlearningcenter.org/files/hatchlearningcenter.org.httpd.conf +++ b/roles/websites/hatchlearningcenter.org/files/hatchlearningcenter.org.httpd.conf @@ -57,10 +57,12 @@ Header always set \ Strict-Transport-Security "max-age=63072000; includeSubDomains" + SSLProxyEngine On RewriteEngine On RewriteRule /submit/attendance http://127.0.0.1:8000/hlc-attendance [P] RewriteRule /submit/signup http://127.0.0.1:8000/hlc-signup [P] RewriteRule /submit/summer2024 http://127.0.0.1:8000/hlc-summer2024 [P] + RewriteRule /submit/enrollment2024 https://hlcforms.pyrocufflink.blue/submit/enrollment2024 [P] DocumentRoot /srv/www/hatchlearningcenter.org/htdocs