diff options
author | Jonas Smedegaard <dr@jones.dk> | 2002-10-30 15:53:30 +0000 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2002-10-30 15:53:30 +0000 |
commit | e1e2510f3cc96611f1a83d5692054a5a6476b3ef (patch) | |
tree | 0c8c3824f6c6d852c810b6dac6395b7b34f459f1 /apache/vhosts.d/00Virtual | |
parent | 8db4df3b64aac3524dc731f5f354edb6803636df (diff) |
apache: Add vhosts.d, include.d and some example config snippets.
Diffstat (limited to 'apache/vhosts.d/00Virtual')
-rw-r--r-- | apache/vhosts.d/00Virtual | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/apache/vhosts.d/00Virtual b/apache/vhosts.d/00Virtual new file mode 100644 index 0000000..9a7bf64 --- /dev/null +++ b/apache/vhosts.d/00Virtual @@ -0,0 +1,17 @@ +DocumentRoot /home + +<Directory /home/*/websites/*> + AllowOverride FileInfo AuthConfig Limit + Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec + <Limit GET POST OPTIONS PROPFIND> + Order allow,deny + Allow from all + </Limit> + <Limit PUT DELETE PATCH PROPPATCH MKCOL COPY MOVE LOCK UNLOCK> + Order deny,allow + Deny from all + </Limit> +</Directory> + +UseCanonicalName Off +NameVirtualHost * |