pull/494/head
Didier 2023-09-12 12:50:11 +02:00
parent 71abb662ab
commit 00605434ff
1 changed files with 11 additions and 3 deletions

View File

@ -42,6 +42,14 @@ sudo a2enmod headers
### Apache Virtual Host ### Apache Virtual Host
Modify default Apache virtual host:
```bash
sudo vi /etc/apache2/sites-enabled/000-default.conf
```
With this configuration:
```conf ```conf
<VirtualHost _default_:80> <VirtualHost _default_:80>
ServerAdmin admin@localhost.lu ServerAdmin admin@localhost.lu
@ -189,15 +197,15 @@ And configure the database connection:
# 3. Migrating MONARC DB # 3. Migrating MONARC DB
```bash ```bash
$ php ./vendor/robmorgan/phinx/bin/phinx migrate -c module/Monarc/FrontOffice/migrations/phinx.php sudo php ./vendor/robmorgan/phinx/bin/phinx migrate -c module/Monarc/FrontOffice/migrations/phinx.php
$ php ./vendor/robmorgan/phinx/bin/phinx migrate -c module/Monarc/Core/migrations/phinx.php sudo php ./vendor/robmorgan/phinx/bin/phinx migrate -c module/Monarc/Core/migrations/phinx.php
``` ```
# 4. Create initial user # 4. Create initial user
```bash ```bash
$ php ./vendor/robmorgan/phinx/bin/phinx seed:run -c ./module/Monarc/FrontOffice/migrations/phinx.php sudo php ./vendor/robmorgan/phinx/bin/phinx seed:run -c ./module/Monarc/FrontOffice/migrations/phinx.php
``` ```
The username is *admin@admin.localhost* and the password is *admin*. The username is *admin@admin.localhost* and the password is *admin*.