aboutsummaryrefslogtreecommitdiff
path: root/vim/bundle/vim-snippets/snippets/apache.snippets
diff options
context:
space:
mode:
Diffstat (limited to 'vim/bundle/vim-snippets/snippets/apache.snippets')
m---------vim/bundle/vim-snippets0
-rw-r--r--vim/bundle/vim-snippets/snippets/apache.snippets35
2 files changed, 0 insertions, 35 deletions
diff --git a/vim/bundle/vim-snippets b/vim/bundle/vim-snippets
new file mode 160000
+Subproject 15d7e5ec26ec93adee4051b6359be90a943aa38
diff --git a/vim/bundle/vim-snippets/snippets/apache.snippets b/vim/bundle/vim-snippets/snippets/apache.snippets
deleted file mode 100644
index db3256e..0000000
--- a/vim/bundle/vim-snippets/snippets/apache.snippets
+++ /dev/null
@@ -1,35 +0,0 @@
-# Snippets for code blocks used oftenly in Apache files.
-# <Directory>
-snippet dir
- <Directory ${1:/}>
- DirectoryIndex ${0:index.html}
- Order Deny,Allow
- Deny from All
- </Directory>
-# <FilesMatch>
-snippet filesmatch
- <FilesMatch "${1:regex}">
- ${0}
- </FilesMatch>
-# <IfModule>
-snippet ifmodule
- <IfModule ${1:mod_example.c}>
- ${0}
- </IfModule>
-# <LimitExcept>
-snippet limitexcept
- <LimitExcept ${1:POST GET}>
- ${0}
- </LimitExcept>
-# <Proxy>
-snippet proxy
- <Proxy ${1:*}>
- ${0}
- </Proxy>
-# <VirtualHost>
-snippet virtualhost
- <VirtualHost ${1:*}:${2:80}>
- ServerAdmin ${3:webmaster@example.com}
- DocumentRoot ${4:/www/example.com}
- ServerName ${0:www.example.com}
- </VirtualHost>