Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

README: Composer and correct DocumentRoot #22

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,21 @@ lib.

1) Clone the repository under a web:

Considering you have a Apache Web Server running with ServerRoot= `/var/www`.
Considering you have a Apache Web Server running with `DocumentRoot /var/www/web`.
Notes:
* The subdirectory named `web` must be served.
* [Composer must be installed](https://getcomposer.org/download/) and in [`$PATH` (UNIX) or `%PATH%` (Windows)](https://getcomposer.org/doc/00-intro.md).

```bash
cd /var/www
git clone https://github.com/rafaelgou/php-apache2-basic-auth-manager.git
cd php-apache2-basic-auth-manager
composer install
```

2) Configure the application

```bash
cd php-apache2-basic-auth-manager
cp config-dist.yml config.yml
chown -R www-data:www-data *
```
Expand Down