summaryrefslogtreecommitdiff
path: root/debian/etc/apache2/sites-available/taler-merchant.conf
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2021-07-30 13:25:12 +0200
committerFlorian Dold <florian@dold.me>2021-07-30 13:25:15 +0200
commit08fe9ada3316343df083dc78ec5b294a8d2c17ff (patch)
treed3c3117dae6cd4a820ced53729ef68b1d2a12552 /debian/etc/apache2/sites-available/taler-merchant.conf
parentc94541d3ed3bddc22cdee22c1dd56056b83d0fdb (diff)
downloadmerchant-08fe9ada3316343df083dc78ec5b294a8d2c17ff.tar.gz
merchant-08fe9ada3316343df083dc78ec5b294a8d2c17ff.tar.bz2
merchant-08fe9ada3316343df083dc78ec5b294a8d2c17ff.zip
debian: just install sample websites
Diffstat (limited to 'debian/etc/apache2/sites-available/taler-merchant.conf')
-rw-r--r--debian/etc/apache2/sites-available/taler-merchant.conf18
1 files changed, 18 insertions, 0 deletions
diff --git a/debian/etc/apache2/sites-available/taler-merchant.conf b/debian/etc/apache2/sites-available/taler-merchant.conf
new file mode 100644
index 00000000..eebc6826
--- /dev/null
+++ b/debian/etc/apache2/sites-available/taler-merchant.conf
@@ -0,0 +1,18 @@
+<!--
+ Make sure to enable the following Apache modules before
+ integrating this into your configuration:
+
+ # a2enmod proxy
+ # a2enmod proxy_http
+ # a2enmod headers
+ # a2enmod rewrite
+-->
+
+<Location "/taler-merchant/">
+RewriteEngine On
+RewriteCond "%{HTTP:AUTHORIZATION}" "!= %SECURITYTOKEN%"
+RewriteRule "(.+)/private/" "-" [F]
+
+ProxyPass "unix:/var/lib/taler-merchant/httpd/merchant.sock|http://example.com/"
+RequestHeader add "X-Forwarded-Proto" "https"
+</Location>