summaryrefslogtreecommitdiff
path: root/baserock/strata/apache-httpd-server/mod_wsgi.morph
diff options
context:
space:
mode:
Diffstat (limited to 'baserock/strata/apache-httpd-server/mod_wsgi.morph')
-rw-r--r--baserock/strata/apache-httpd-server/mod_wsgi.morph18
1 files changed, 18 insertions, 0 deletions
diff --git a/baserock/strata/apache-httpd-server/mod_wsgi.morph b/baserock/strata/apache-httpd-server/mod_wsgi.morph
new file mode 100644
index 00000000..86004ad3
--- /dev/null
+++ b/baserock/strata/apache-httpd-server/mod_wsgi.morph
@@ -0,0 +1,18 @@
+name: mod_wsgi
+kind: chunk
+build-system: autotools
+configure-commands:
+- |
+ ./configure --prefix="$PREFIX" \
+ --with-apxs=/usr/bin/apxs
+post-install-commands:
+- |
+ install -D -m 644 /proc/self/fd/0 <<'EOF' "$DESTDIR"/etc/httpd/conf.d/wsgi.conf
+ # NOTE: mod_wsgi can not coexist in the same apache process as
+ # mod_wsgi_python3. Only load if mod_wsgi_python3 is not
+ # already loaded.
+
+ <IfModule !wsgi_module>
+ LoadModule wsgi_module /usr/lib/httpd/modules/mod_wsgi.so
+ </IfModule>
+ EOF