diff options
author | Jonas Smedegaard <dr@jones.dk> | 2002-10-30 16:35:13 +0000 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2002-10-30 16:35:13 +0000 |
commit | df1f3353701833e3f45f8933a2e0843b94d4fd45 (patch) | |
tree | ed5474590cfecfd918569e2f8063a0e39946d01a /apache | |
parent | e1e2510f3cc96611f1a83d5692054a5a6476b3ef (diff) |
apache: Add example vhost cups.
Diffstat (limited to 'apache')
-rw-r--r-- | apache/vhosts.d/cups | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/apache/vhosts.d/cups b/apache/vhosts.d/cups new file mode 100644 index 0000000..f122b09 --- /dev/null +++ b/apache/vhosts.d/cups @@ -0,0 +1,12 @@ +<VirtualHost *> + ServerName cups.107b.dk + RewriteEngine On + RewriteRule / http://cups.107b.dk:631/ [R] + TransferLog /dev/null +</VirtualHost> +<VirtualHost *> + ServerName cups + RewriteEngine On + RewriteRule / http://cups:631/ [R] + TransferLog /dev/null +</VirtualHost> |