From 8047a4dfb7c9a3f70e35c53b1d7703833da9d36a Mon Sep 17 00:00:00 2001 From: Denver Abrey Date: Thu, 13 Oct 2016 15:08:42 +0200 Subject: Add apache2 reverse proxy example --- extra/oxidized.apache2 | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 extra/oxidized.apache2 diff --git a/extra/oxidized.apache2 b/extra/oxidized.apache2 new file mode 100644 index 0000000..0ab372b --- /dev/null +++ b/extra/oxidized.apache2 @@ -0,0 +1,14 @@ + + # Place in sites-available + + ServerAdmin admin@example.com + ServerName oxidized.example.com + ServerAlias oxidized + + ProxyPass / http://127.0.0.1:8888/ + ProxyPassReverse / http://127.0.0.1:8888/ + + ErrorLog /var/log/apache2/oxidized_error.log + CustomLog /var/log/apache2/oxidized_access.log combined + + -- cgit v1.2.1