Fix Staging server 404 error (#22)
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Shahan Nedadahandeh 2022-07-07 19:52:43 -04:00
parent 126a61fc28
commit 854c5d5bae
3 changed files with 14 additions and 0 deletions

View File

@ -1,2 +1,5 @@
FROM nginx
COPY ./out /usr/share/nginx/html
COPY staging-nginx.conf /etc/nginx/conf.d
RUN rm /etc/nginx/conf.d/default.conf

View File

@ -1,6 +1,7 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
trailingSlash: true,
}
module.exports = nextConfig

10
staging-nginx.conf Normal file
View File

@ -0,0 +1,10 @@
server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ $uri.html $uri.html/ /index.html;
}
error_page 404 /index.html;
}