Skip to content

Commit 64c4bb9

Browse files
committed
Moves nginx conf into dockerfiles folder
1 parent db36a4e commit 64c4bb9

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

dockerfiles/nginx.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ RUN addgroup -g ${GID} --system laravel
1313
RUN adduser -G laravel --system -D -s /bin/sh -u ${UID} laravel
1414
RUN sed -i "s/user nginx/user laravel/g" /etc/nginx/nginx.conf
1515

16-
ADD ../nginx/default.conf /etc/nginx/conf.d/
16+
ADD ./nginx/default.conf /etc/nginx/conf.d/
1717

1818
RUN mkdir -p /var/www/html

dockerfiles/nginx.root.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ FROM nginx:stable-alpine
22

33
RUN sed -i "s/user nginx/user root/g" /etc/nginx/nginx.conf
44

5-
ADD ../nginx/default.conf /etc/nginx/conf.d/
5+
ADD ./nginx/default.conf /etc/nginx/conf.d/
66

77
RUN mkdir -p /var/www/html
File renamed without changes.

0 commit comments

Comments
 (0)