We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d819f92 commit 932ee74Copy full SHA for 932ee74
.htpasswd
Dockerfile
@@ -25,7 +25,6 @@ RUN pnpm run build
25
FROM nginx:alpine
26
27
COPY nginx.conf /etc/nginx/conf.d/default.conf
28
-COPY .htpasswd /etc/nginx/.htpasswd
29
COPY --from=build /app/dist /usr/share/nginx/html
30
31
EXPOSE 80
nginx.conf
@@ -3,9 +3,6 @@ server {
3
root /usr/share/nginx/html;
4
error_page 404 /404.html;
5
6
- auth_basic "Restricted";
7
- auth_basic_user_file /etc/nginx/.htpasswd;
8
-
9
location / {
10
try_files $uri $uri/ $uri.html =404;
11
}
0 commit comments