summaryrefslogtreecommitdiff
path: root/extra
diff options
context:
space:
mode:
authorDenver Abrey <denver@thoughtexpress.com>2016-10-13 15:08:42 +0200
committerDenver Abrey <denver@thoughtexpress.com>2016-10-13 15:08:42 +0200
commit8047a4dfb7c9a3f70e35c53b1d7703833da9d36a (patch)
tree2768f1e61d898ab73a640c6ae889f55f03dd5c4c /extra
parent7fdbdabafeb3f79de55cdbce295010be4fc48487 (diff)
Add apache2 reverse proxy example
Diffstat (limited to 'extra')
-rw-r--r--extra/oxidized.apache214
1 files changed, 14 insertions, 0 deletions
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 @@
+<VirtualHost *:80>
+ # 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
+
+</VirtualHost>