aboutsummaryrefslogtreecommitdiff
path: root/extra/wsgi-coupons.conf
diff options
context:
space:
mode:
Diffstat (limited to 'extra/wsgi-coupons.conf')
-rw-r--r--extra/wsgi-coupons.conf7
1 files changed, 7 insertions, 0 deletions
diff --git a/extra/wsgi-coupons.conf b/extra/wsgi-coupons.conf
new file mode 100644
index 0000000..1a3b17c
--- /dev/null
+++ b/extra/wsgi-coupons.conf
@@ -0,0 +1,7 @@
+WSGIScriptAlias /coupons /usr/libexec/coupons/coupons_web.py
+# The application will try to use a "coupons" directory underneath here.
+# You should make the coupons directory beforehand, and set permissions for apache to write to it.
+SetEnv XDG_CACHE_HOME /var/cache/apache2
+<Directory /usr/libexec/coupons>
+ Require all granted
+</Directory>
bgstack15