2012-08-16 23:41:25 -04:00
|
|
|
# Snippets for code blocks used oftenly in Apache files.
|
|
|
|
# <Directory>
|
|
|
|
snippet dir
|
|
|
|
<Directory ${1:/}>
|
2013-11-16 14:45:48 -05:00
|
|
|
DirectoryIndex ${0:index.html}
|
2012-08-16 23:41:25 -04:00
|
|
|
Order Deny,Allow
|
|
|
|
Deny from All
|
|
|
|
</Directory>
|
2013-07-17 19:06:05 -04:00
|
|
|
# <FilesMatch>
|
2012-08-16 23:41:25 -04:00
|
|
|
snippet filesmatch
|
|
|
|
<FilesMatch "${1:regex}">
|
2017-02-11 08:01:38 -05:00
|
|
|
${0:${VISUAL}}
|
2012-08-16 23:41:25 -04:00
|
|
|
</FilesMatch>
|
|
|
|
# <IfModule>
|
|
|
|
snippet ifmodule
|
|
|
|
<IfModule ${1:mod_example.c}>
|
2017-02-11 08:01:38 -05:00
|
|
|
${0:${VISUAL}}
|
2012-08-16 23:41:25 -04:00
|
|
|
</IfModule>
|
|
|
|
# <LimitExcept>
|
|
|
|
snippet limitexcept
|
|
|
|
<LimitExcept ${1:POST GET}>
|
2017-02-11 08:01:38 -05:00
|
|
|
${0:${VISUAL}}
|
2012-08-16 23:41:25 -04:00
|
|
|
</LimitExcept>
|
|
|
|
# <Proxy>
|
|
|
|
snippet proxy
|
|
|
|
<Proxy ${1:*}>
|
2017-02-11 08:01:38 -05:00
|
|
|
${0:${VISUAL}}
|
2012-08-16 23:41:25 -04:00
|
|
|
</Proxy>
|
|
|
|
# <VirtualHost>
|
|
|
|
snippet virtualhost
|
|
|
|
<VirtualHost ${1:*}:${2:80}>
|
|
|
|
ServerAdmin ${3:webmaster@example.com}
|
|
|
|
DocumentRoot ${4:/www/example.com}
|
2013-11-16 14:45:48 -05:00
|
|
|
ServerName ${0:www.example.com}
|
2012-08-16 23:41:25 -04:00
|
|
|
</VirtualHost>
|