Skip to content

Commit

Permalink
Minor improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
williamdes committed Dec 8, 2023
1 parent 0f781cb commit 04da08f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ all: docker-build docker-test
docker-build:
# https://github.com/docker/buildx#building
docker buildx build \
--build-arg VCS_REF=`git rev-parse HEAD` \
--build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` \
--build-arg VCS_REF="$(shell git rev-parse HEAD)" \
--build-arg BUILD_DATE="$(shell date -u +"%Y-%m-%dT%H:%M:%SZ")" \
--tag $(IMAGE_TAG) \
--progress $(PROGRESS_MODE) \
--platform $(PLATFORM) \
Expand Down
6 changes: 3 additions & 3 deletions docker/nginx-default.conf
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ server {
fastcgi_pass unix:/run/phpfpm/php-fpm.sock;
}

location /robots.txt {
return 200 "User-agent: *\nDisallow: /";
}
location /robots.txt {
return 200 "User-agent: *\nDisallow: /";
}

location ~ ^/(css|js|images)/ {
access_log off;
Expand Down

0 comments on commit 04da08f

Please sign in to comment.