We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19b8059 commit 98c887fCopy full SHA for 98c887f
dockerfile
@@ -40,6 +40,9 @@ RUN mkdir -p /etc/letsencrypt /var/lib/letsencrypt /var/www/certbot
40
RUN apk add --no-cache nginx-mod-http-brotli
41
42
COPY --from=builder /site/site /usr/share/nginx/html
43
+RUN chown -R nginx:nginx /usr/share/nginx/html && \
44
+ chown -R nginx:nginx /var/www/certbot
45
+
46
COPY nginx.conf /etc/nginx/nginx.conf
47
COPY entrypoint.sh /entrypoint.sh
48
nginx.conf
@@ -1,3 +1,4 @@
1
+user nginx;
2
worker_processes auto;
3
4
events {
0 commit comments