diff options
author | B. Stack <bgstack15@gmail.com> | 2022-09-09 15:17:58 -0400 |
---|---|---|
committer | B. Stack <bgstack15@gmail.com> | 2022-09-09 15:17:58 -0400 |
commit | 6d04ba74279e3e8011a60bde17b2ae4e2a752fa0 (patch) | |
tree | ce9aa02264b7fc98e507f34b1694e7794e8f9095 /extra/wsgi-coupons.conf | |
parent | use XDG_CACHE_HOME correctly (diff) | |
download | coupons-6d04ba74279e3e8011a60bde17b2ae4e2a752fa0.tar.gz coupons-6d04ba74279e3e8011a60bde17b2ae4e2a752fa0.tar.bz2 coupons-6d04ba74279e3e8011a60bde17b2ae4e2a752fa0.zip |
add web app
Diffstat (limited to 'extra/wsgi-coupons.conf')
-rw-r--r-- | extra/wsgi-coupons.conf | 7 |
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> |