We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 281c851 + 096fdb1 commit 3f51aacCopy full SHA for 3f51aac
neosnippets/apache.snip
@@ -20,3 +20,31 @@ snippet dir
20
${0}
21
</Directory>
22
23
+snippet ifmodule
24
+ <IfModule ${1:module_name}>
25
+ ${2}
26
+ </IfModule>
27
+
28
+snippet if
29
+ <If ${1:condition}>
30
31
+ </If>
32
33
+snippet RemoteIPHeader
34
+ RemoteIPHeader X-Forwarded-For
35
36
+snippet location
37
+ <Location ${1:location}>
38
+ ${2:config}
39
+ </Location>
40
41
+snippet locationmatch
42
+ <LocationMatch "${1:regex}">
43
44
+ </LocationMatch>
45
46
+snippet directoryindex
47
+ DirectoryIndex index.php index.html
48
49
+snippet require
50
+ Require all granted
0 commit comments