We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 144cf23 commit ef2b1e6Copy full SHA for ef2b1e6
2 files changed
src/Dockerfile
@@ -2,7 +2,7 @@ FROM nginx:alpine-slim
2
3
ENV TZ=UTC
4
5
-LABEL org.opencontainers.image.source="https://github.com//docker-nginx-static"
+LABEL org.opencontainers.image.source="https://github.com/cssnr/docker-nginx-static"
6
LABEL org.opencontainers.image.description="Docker Nginx Static"
7
LABEL org.opencontainers.image.authors="cssnr"
8
src/nginx.conf
@@ -26,7 +26,7 @@ http {
26
root /static;
27
index NGINX_INDEX;
28
autoindex on;
29
- try_files $uri $uri.html $uri/ =404;
+ try_files $uri $uri.html $uri/ /404.html =404;
30
include /etc/nginx/conf.d/location.*;
31
}
32
0 commit comments