summaryrefslogtreecommitdiffstats
path: root/etc/apache2/sites-available
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2012-11-04 17:23:46 +0100
committerHolger Levsen <holger@layer-acht.org>2012-11-04 17:23:46 +0100
commite761ae8344a098f46a37789c5b02bba1a424aa24 (patch)
tree5df76f65d128912506be9a79575adfe94f9d22e9 /etc/apache2/sites-available
parentc9e6b8eb89bd1635f6f720746ac72fcfb636a3f6 (diff)
downloadjenkins.debian.net-e761ae8344a098f46a37789c5b02bba1a424aa24.tar.xz
add+configure munin
Diffstat (limited to 'etc/apache2/sites-available')
-rw-r--r--etc/apache2/sites-available/jenkins.debian.net42
1 files changed, 42 insertions, 0 deletions
diff --git a/etc/apache2/sites-available/jenkins.debian.net b/etc/apache2/sites-available/jenkins.debian.net
new file mode 100644
index 00000000..dc2d5b59
--- /dev/null
+++ b/etc/apache2/sites-available/jenkins.debian.net
@@ -0,0 +1,42 @@
+<VirtualHost *:80>
+ ServerAdmin webmaster@localhost
+
+ DocumentRoot /var/www
+ <Directory />
+ Options FollowSymLinks
+ AllowOverride None
+ </Directory>
+ <Directory /var/www/>
+ Options Indexes FollowSymLinks MultiViews
+ AllowOverride None
+ Order allow,deny
+ allow from all
+ </Directory>
+
+ ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
+ <Directory "/usr/lib/cgi-bin">
+ AllowOverride None
+ Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
+ Order allow,deny
+ Allow from all
+ </Directory>
+
+ ProxyRequests Off
+ <Proxy *>
+ Order deny,allow
+ Allow from all
+ </Proxy>
+ ProxyPreserveHost on
+ # proxy everything but /munin
+ ProxyPass /munin !
+ ProxyPass / http://localhost:8080/
+
+
+ ErrorLog ${APACHE_LOG_DIR}/error.log
+
+ # Possible values include: debug, info, notice, warn, error, crit,
+ # alert, emerg.
+ LogLevel warn
+
+ CustomLog ${APACHE_LOG_DIR}/access.log combined
+</VirtualHost>