Request Demo
diff --git a/Home/views/customer-section.ejs b/Home/views/customer-section.ejs
index ed363540fb..80f2bb6e30 100644
--- a/Home/views/customer-section.ejs
+++ b/Home/views/customer-section.ejs
@@ -1,11 +1,10 @@
\ No newline at end of file
diff --git a/Home/views/index.ejs b/Home/views/index.ejs
index 7cb647d8fe..160dbbdaf2 100755
--- a/Home/views/index.ejs
+++ b/Home/views/index.ejs
@@ -118,11 +118,6 @@
<%- include('feature-table') -%>
-
- <%- include('customer-section') -%>
-
-
-
<%- include('comparision-chart') -%>
@@ -292,7 +287,7 @@
<%- include('cta-buttons') -%>
- <%- include("testimonials", { title: "Software teams around the world love OneUptime!" ,
+
diff --git a/Home/views/private-status-page.ejs b/Home/views/private-status-page.ejs
index 85627118ac..c0bd4e9766 100644
--- a/Home/views/private-status-page.ejs
+++ b/Home/views/private-status-page.ejs
@@ -371,7 +371,7 @@
<%- include('cta-buttons') -%>
- <%- include("testimonials", {
+
<%- include('integration') -%>
diff --git a/Home/views/public-status-page.ejs b/Home/views/public-status-page.ejs
index d73b5c7465..e4dfd81f51 100644
--- a/Home/views/public-status-page.ejs
+++ b/Home/views/public-status-page.ejs
@@ -355,7 +355,7 @@
<%- include('cta-buttons') -%>
- <%- include("testimonials", {
+
<%- include('integration') -%>
diff --git a/Home/views/website-monitoring.ejs b/Home/views/website-monitoring.ejs
index 98c453ff4e..ea308a6728 100644
--- a/Home/views/website-monitoring.ejs
+++ b/Home/views/website-monitoring.ejs
@@ -273,7 +273,7 @@
<%- include('cta-buttons') -%>
- <%- include("testimonials", {
+
diff --git a/Nginx/default.conf b/Nginx/default.conf
index e9cc7c2503..4f81fe632d 100644
--- a/Nginx/default.conf
+++ b/Nginx/default.conf
@@ -1,6 +1,5 @@
upstream accounts {
- server accounts:3003; # server name is same as the service name used in docker-compose file
- # port on which the service is running...NOT the exposed port(the RHS port in docker-compose ports attr.)
+ server accounts:3003;
}
upstream admin {
server AdminDashboard:3100;
@@ -35,14 +34,10 @@ upstream probe1 {
upstream probe2 {
server probe2:3025;
}
-server {
- listen 80;
- server_name localhost;
- return 301 https://$host$request_uri;
-}
server {
listen 443 ssl; # Port HTTPS
+ listen 80;
server_name localhost;
ssl_certificate /etc/nginx/certs/nginx.crt;
@@ -51,6 +46,7 @@ server {
location / {
proxy_pass http://home/;
}
+
location /accounts {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;