Additions to nginx install instructions
Two things I had to find out through trial & error or by finding on the web. In my case (Ubuntu Server 14.04) the proper path to `fastcgi_pass` was `unix:/var/run/php5-fpm.sock`
This commit is contained in:
parent
853db7c449
commit
f15cadffd6
1 changed files with 10 additions and 1 deletions
11
INSTALL.md
11
INSTALL.md
|
@ -168,7 +168,9 @@ $ root:/etc/nginx/sites-available> ln -s /var/www/dav.mydomain.com/Specific/virt
|
|||
# d. Customize the virtualhost config file
|
||||
$ root:/etc/nginx/sites-available> nano baikal.nginx
|
||||
|
||||
# e. In baikal.nginx, replace references to dav.mydomain.com with your own domain name
|
||||
# e. In baikal.nginx, replace references to dav.mydomain.com with your own domain name.
|
||||
# It may be possible that you have to modify the value of the fastcgi_pass directive too.
|
||||
# Please consult your server's documentation if you receive a 404 error.
|
||||
|
||||
# f. Activate the new virtualhost
|
||||
$ root:/etc/nginx/sites-available> cd ../sites-enabled
|
||||
|
@ -180,6 +182,13 @@ $ root:/etc/nginx/sites-enabled> /etc/init.d/nginx restart
|
|||
|
||||
#### 3.2.1.3 - Setting up Baïkal
|
||||
|
||||
To enable the installation tool you have to create a temporary file.
|
||||
|
||||
```sh
|
||||
# Replace with your actual document root
|
||||
$ root: cd /var/www/dav.mydomain.com touch Specific/ENABLE_INSTALL
|
||||
```
|
||||
|
||||
In a web browser, navigate to http://dav.mydomain.com and follow the instructions of the initialization web tool
|
||||
|
||||
### 3.2.2 Using Baïkal "Bleeding-edge" version for developers (requires git and composer)
|
||||
|
|
Loading…
Add table
Reference in a new issue