From a42474deec764f67140ee847e9fde4e8d8c77499 Mon Sep 17 00:00:00 2001 From: Dhanraj Date: Sun, 7 Jul 2024 15:40:07 +0530 Subject: [PATCH] nginx config added --- .nginx/nginx.conf | 16 ++++++++++++++++ src/pages/page-services-5/index.jsx | 4 +--- 2 files changed, 17 insertions(+), 3 deletions(-) create mode 100644 .nginx/nginx.conf diff --git a/.nginx/nginx.conf b/.nginx/nginx.conf new file mode 100644 index 0000000..dcdfc9a --- /dev/null +++ b/.nginx/nginx.conf @@ -0,0 +1,16 @@ +server { + + listen 80; + + location / { + root /usr/share/nginx/html; + index index.html index.htm; + try_files $uri /index.html =404; + } + + error_page 500 502 503 504 /50x.html; + + location = /50x.html { + root /usr/share/nginx/html; + } +} \ No newline at end of file diff --git a/src/pages/page-services-5/index.jsx b/src/pages/page-services-5/index.jsx index 7efc619..c6c6fef 100644 --- a/src/pages/page-services-5/index.jsx +++ b/src/pages/page-services-5/index.jsx @@ -12,8 +12,6 @@ import About from 'components/Saas/About'; import Testimonials from 'components/Saas/Testimonials'; import Pricing from 'components/Saas/Pricing'; // import Footer from 'components/software/Footer'; -import Footer from '../../components/software/Footer'; // Adjust the relative path as needed - const PageServices5 = () => { const navbarRef = useRef(null); @@ -33,7 +31,7 @@ const PageServices5 = () => { {/* */} {/* */} -