Skip to content

Commit

Permalink
🐛 Fix Syntax Typos
Browse files Browse the repository at this point in the history
  • Loading branch information
sherifabdlnaby committed Dec 14, 2021
1 parent a2bacd2 commit 175004a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,9 @@ ENV APP_DEBUG 1
USER root

# For Composer Installs
RUN apk add git openssh;
RUN apk add git openssh; \
# Enable Xdebug
docker-php-ext-enable xdebug; \
docker-php-ext-enable xdebug

# For Xdebuger to work, it needs the docker host ID
# - in Mac AND Windows, `host.docker.internal` resolve to Docker host IP
Expand Down
2 changes: 1 addition & 1 deletion docker/nginx/conf.d/json-logs.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# logging
log_format json escape=json '{"@timestamp":"$time_iso8601","status":"$status","method":"$request_method","path":"$request_uri","request_query":"$args","request_time":"$request_time","vhost":"$host","bytes_sent":"$bytes_sent","request_length":"$request_length","request_proto":"$server_protocol","remote_user":"$remote_user","remote_addr":"$remote_addr","http_referrer":"$http_referer","http_user_agent":"$http_user_agent"}';
access_log /dev/stdout ${NGINX_LOG_FORMAT}
access_log /dev/stdout ${NGINX_LOG_FORMAT};
error_log /dev/stderr warn;

0 comments on commit 175004a

Please sign in to comment.