Skip to content

Commit

Permalink
Merge pull request #6 from chrisolof/4-documentation-improvements
Browse files Browse the repository at this point in the history
#4:  Adds better linux documentation.
  • Loading branch information
arknoll committed Jun 13, 2014
2 parents 7e64904 + aa33242 commit b32c4b5
Showing 1 changed file with 50 additions and 2 deletions.
52 changes: 50 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ cookbook "drupal-nfs", git: "https://github.com/arknoll/drupal-nfs", branch: "ma

Usage
-----
### example:
### Mac Example:

**Expose a share of /srv/www/example/current**

This example will open up an nfs share:
* for the folder located at /srv/www/example/current
Expand All @@ -58,11 +60,54 @@ This example will open up an nfs share:
}
````

### Mount example:
**Mount the share on your mac**
````
sudo mount -o resvport [server ip]:/srv/www/example/current test
````


### Linux Example:

**Expose a share of /assets**

This example will open up an nfs share of the /assets folder on the virtualized server with the following details:

* Only clients with the IP address of 192.168.50.1 can mount this share (the default IP of a drupal-lamp host machine as seen by the virtualized server).
* Those who mount this will have write access.
* The [NFS sync option][1] will be used to ensure greater data cache coherence.
* Those who mount this will come through as www-data:www-data (uid 33 & gid 33 in a default drupal-lamp virtualized Ubuntu server).


````
"nfs_exports": {
"/assets": {
"clients": {
"192.168.50.1": {
"writeable": true,
"sync": true,
"options": [
"all_squash",
"anonuid=33",
"anongid=33"
]
}
}
}
}
````


**Mount the share on your linux machine**

Note: Assumes you've exposed the share /assets on your virtualized server and you've created an empty assets folder in your drupal-lamp directory.

From the host machine:

````
sudo mount 192.168.50.5:/assets /home/[your_user_name]/drupal-lamp/assets
````


Attributes
----------

Expand Down Expand Up @@ -129,3 +174,6 @@ We welcome contributed improvements and bug fixes via the usual workflow:
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new pull request


[1]: http://linux.die.net/man/5/nfs

0 comments on commit b32c4b5

Please sign in to comment.