Skip to content

Commit

Permalink
Update folder app
Browse files Browse the repository at this point in the history
  • Loading branch information
andreipa committed Apr 12, 2021
1 parent 8cbfdf3 commit 0b3efc4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ git fetch --all
docker-compose up -d --build
```

You can access your LAMP stack via `http://localhost` or `http://app1.local`
You can access your LAMP stack via `http://localhost` or `http://app.local`

> You need to modify your hosts file. [How to Edit the Hosts File?](https://gist.github.com/andreipa/47ce0679d1905883c18b9ac3a1a9a8f6)
Expand Down Expand Up @@ -105,7 +105,7 @@ By default following extensions are installed.
- imagick-3.4.4
- mysqli
- pdo_sqlite
- xdebug-3.0.3
- xdebug-3.0.4
- xml
- zip

Expand Down
2 changes: 1 addition & 1 deletion bin/webserver/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ RUN echo "ServerName localhost" >> /etc/apache2/apache2.conf
# PECL Extensions xdebug | imagick
RUN apt-get update && apt-get install -y \
libmagickwand-dev --no-install-recommends \
&& pecl install xdebug-3.0.3 \
&& pecl install xdebug-3.0.4 \
&& pecl install imagick-3.4.4 \
&& docker-php-ext-enable xdebug imagick

Expand Down
10 changes: 5 additions & 5 deletions config/vhosts/default.conf
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
</VirtualHost>

<VirtualHost *:80>
ServerAdmin webmaster@app1.local
ServerName app1.local
ServerAlias www.app1.local
DocumentRoot "/var/www/html/app1/"
<Directory "/var/www/html/app1/">
ServerAdmin webmaster@app.local
ServerName app.local
ServerAlias www.app.local
DocumentRoot "/var/www/html/app/"
<Directory "/var/www/html/app/">
AllowOverride all
</Directory>
</VirtualHost>
File renamed without changes.

0 comments on commit 0b3efc4

Please sign in to comment.