-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvhosts-template.conf
48 lines (39 loc) · 1.01 KB
/
vhosts-template.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<VirtualHost *:{{PORT}}>
# first vhost will be the fallback
# /usr/local/var/www/htdocs is setup by homebrew-apache
DocumentRoot "/usr/local/var/www/htdocs"
Options Indexes
</VirtualHost>
<Directory "{{PATH}}">
Options Indexes
AllowOverride All
Require local
</Directory>
<VirtualHost *:{{PORT}}>
ServerName test.dev
DocumentRoot "{{PATH}}/document-root"
</VirtualHost>
<VirtualHost *:{{PORT}}>
ServerName test.local
DocumentRoot "{{PATH}}/document-root"
</VirtualHost>
<VirtualHost *:{{PORT}}>
ServerName test.localhost
DocumentRoot "{{PATH}}/document-root"
</VirtualHost>
<VirtualHost *:{{PORT}}>
ServerName test.com
DocumentRoot "{{PATH}}/document-root"
</VirtualHost>
<VirtualHost *:{{PORT}}>
ServerName test.org
DocumentRoot "{{PATH}}/document-root"
</VirtualHost>
<VirtualHost *:{{PORT}}>
ServerName test.gov
DocumentRoot "{{PATH}}/document-root"
</VirtualHost>
<VirtualHost *:{{PORT}}>
ServerName onlytld
DocumentRoot "{{PATH}}/document-root"
</VirtualHost>