Skip to content

Commit

Permalink
Merge pull request #56 from devilbox/release-1.1
Browse files Browse the repository at this point in the history
Mass vhost: Ignore dirs starting with a dot
  • Loading branch information
cytopia committed Jan 3, 2023
2 parents 68545d1 + d41610e commit c5cf2a2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfiles/Dockerfile.alpine
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ LABEL \
### Build arguments
###
ARG VHOST_GEN_GIT_REF=1.0.10
ARG WATCHERD_GIT_REF=v1.0.7
ARG WATCHERD_GIT_REF=v1.1.0
ARG CERT_GEN_GIT_REF=0.10
ARG ARCH=linux/amd64

Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles/Dockerfile.debian
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ LABEL \
### Build arguments
###
ARG VHOST_GEN_GIT_REF=1.0.10
ARG WATCHERD_GIT_REF=v1.0.7
ARG WATCHERD_GIT_REF=v1.1.0
ARG CERT_GEN_GIT_REF=0.10
ARG ARCH=linux/amd64

Expand Down
2 changes: 1 addition & 1 deletion Dockerfiles/data/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ if [ "${MASS_VHOST_ENABLE}" -eq "1" ]; then

supervisord_create \
"${HTTPD_START}" \
"bash -c 'sleep ${WATCHERD_STARTUP_DELAY} && exec watcherd -c -v -p ${MASS_DOCROOT_BASE} -a \"${watcherd_add}\" -d \"${watcherd_del}\" -t \"${watcherd_tri}\"'" \
"bash -c 'sleep ${WATCHERD_STARTUP_DELAY} && exec watcherd -e \"^\\.\" -c -v -p ${MASS_DOCROOT_BASE} -a \"${watcherd_add}\" -d \"${watcherd_del}\" -t \"${watcherd_tri}\"'" \
"/etc/supervisord.conf"

log "done" "Starting supervisord: ${_SUPVD_VERSION} [HTTPD: ${_HTTPD_VERSION}]"
Expand Down

0 comments on commit c5cf2a2

Please sign in to comment.