aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-fe/sdc-frontend/artifacts/scripts/set-http-module.sh
diff options
context:
space:
mode:
authorKhantwal <anamika.khantwal@accenture.com>2025-01-29 11:43:27 +0530
committerAnamika Khantwal <anamika.khantwal@accenture.com>2025-01-29 11:46:54 +0000
commit92c86bb2b390a9d74f84d53b3edeccd239f3f0f5 (patch)
tree25f54a34fcc7098a83179acc75c3fdf5e3869662 /catalog-fe/sdc-frontend/artifacts/scripts/set-http-module.sh
parentbbcddaafb6667c51af97a0d19d43b91f01b4025c (diff)
Chef removal changes from catalog-fe
- Removed chef from catalog-fe module with kubernetes resources. Issue-ID: SDC-4699 Change-Id: If599ea2136bb8dd98a816a9961f25ef0a4c39e25 Signed-off-by: Anamika Khantwal <anamika.khantwal@accenture.com>
Diffstat (limited to 'catalog-fe/sdc-frontend/artifacts/scripts/set-http-module.sh')
-rw-r--r--catalog-fe/sdc-frontend/artifacts/scripts/set-http-module.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/catalog-fe/sdc-frontend/artifacts/scripts/set-http-module.sh b/catalog-fe/sdc-frontend/artifacts/scripts/set-http-module.sh
new file mode 100644
index 0000000000..414bcab6e7
--- /dev/null
+++ b/catalog-fe/sdc-frontend/artifacts/scripts/set-http-module.sh
@@ -0,0 +1,14 @@
+#!/bin/sh
+
+# Define environment variables
+export JETTY_HOME="/app/jetty/" # Replace with your Jetty home directory
+export JETTY_BASE="/app/jetty/" # Replace with your Jetty base directory
+
+# Navigate to the Jetty base directory
+cd "$JETTY_BASE"
+
+# Run the Jetty start-up jar with deploy module added
+java -jar $JETTY_HOME/start.jar --add-to-start=deploy
+
+# Create startd configuration and add http, https, setuid modules
+java -jar $JETTY_HOME/start.jar --create-startd --add-to-start=http,https,setuid,rewrite