Skip to content

Commit ef935a8

Browse files
committed
Merge branch 'master' of git://github.com/all9lives/web-base-template into all9lives-master
* 'master' of git://github.com/all9lives/web-base-template: Added prerequisites to install Directory with AllowOverride to apache conf Conflicts: README.md
2 parents f546686 + d7c1b18 commit ef935a8

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

README.md

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
This is a set of plugins, themes, and configuration files for jQuery's website infrastructure, which is powered by WordPress. It is designed as a custom content directory. So think of `web-base-template` as your `wp-content` directory.
44

5+
## Prerequisites
6+
7+
This install guide assumes you already have certain prerequisites already configured within your environment.
8+
9+
* Apache
10+
* Mysql
11+
* PHP
12+
513
## Installation
614

715
1. Configure your local webserver with a virtual host that covers the relevant jQuery domains, such as `*.jquery.com` and `*.jqueryui.com`, all pointing to the same root. For example, in Apache:
@@ -11,12 +19,12 @@ This is a set of plugins, themes, and configuration files for jQuery's website i
1119
ServerName local.jquery.com
1220
ServerAlias *.jquery.com *.jqueryui.com *.jquery.org *.qunitjs.com *.sizzlejs.com *.jquerymobile.com
1321
DocumentRoot "/srv/www/jquery"
14-
<Directory "/srv/www/jquery">
15-
Options All
16-
AllowOverride All
17-
Order allow,deny
18-
Allow from all
19-
</Directory>
22+
<Directory /srv/www/jquery>
23+
Options All
24+
AllowOverride All
25+
Order allow,deny
26+
Allow from all
27+
</Directory>
2028
</VirtualHost>
2129
```
2230

0 commit comments

Comments
 (0)