aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Dockerfile1
-rw-r--r--nginx.conf10
2 files changed, 11 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
index af4776c..b0e3382 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -9,5 +9,6 @@ RUN pnpm build
# production stage
FROM nginx:stable-alpine as production-stage
COPY --from=build-stage /app/dist /usr/share/nginx/html
+COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"] \ No newline at end of file
diff --git a/nginx.conf b/nginx.conf
new file mode 100644
index 0000000..1a30e15
--- /dev/null
+++ b/nginx.conf
@@ -0,0 +1,10 @@
+server {
+ listen 80;
+ server_name localhost;
+ root /usr/share/nginx/html;
+ index index.html;
+
+ location / {
+ try_files $uri $uri/ /index.html;
+ }
+} \ No newline at end of file