Merge pull request #231 from turbo124/master

Minor fixes
This commit is contained in:
David Bomba
2020-11-28 18:07:34 +11:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,6 @@ RUN set -eux; \
apk add --no-cache \ apk add --no-cache \
curl \ curl \
mysql-client \ mysql-client \
git \
libarchive-tools; \ libarchive-tools; \
mkdir -p /var/www/app mkdir -p /var/www/app
@@ -54,6 +53,7 @@ RUN set -eux; \
libpng-dev \ libpng-dev \
libzip-dev \ libzip-dev \
oniguruma-dev \ oniguruma-dev \
git \
zip; \ zip; \
docker-php-ext-configure gd --with-freetype --with-jpeg; \ docker-php-ext-configure gd --with-freetype --with-jpeg; \
docker-php-ext-install -j$(nproc) \ docker-php-ext-install -j$(nproc) \

View File

@@ -1,6 +1,6 @@
server { server {
listen 80 default_server; listen 80 default_server;
server_name in.localhost; server_name _ in.localhost;
root /var/www/app/public/; root /var/www/app/public/;
index index.php; index index.php;