[redirects-web/proxy] Land vhosts for letsencrypt, splunk, ceph-metrics, ceph-dashboard



commit 1e2ec7bdf7867d0420dc85133ffdaae119b60180
Author: Andrea Veri <averi redhat com>
Date:   Tue Feb 1 16:46:58 2022 +0100

    Land vhosts for letsencrypt, splunk, ceph-metrics, ceph-dashboard

 conf.d/ceph-dashboard.gnome.org.conf | 17 +++++++++++++++++
 conf.d/ceph-metrics.gnome.org.conf   |  9 +++++++++
 conf.d/letsencrypt.gnome.org.conf    |  9 +++++++++
 conf.d/splunk.gnome.org.conf         |  9 +++++++++
 4 files changed, 44 insertions(+)
---
diff --git a/conf.d/ceph-dashboard.gnome.org.conf b/conf.d/ceph-dashboard.gnome.org.conf
new file mode 100644
index 0000000..93d2786
--- /dev/null
+++ b/conf.d/ceph-dashboard.gnome.org.conf
@@ -0,0 +1,17 @@
+http {
+    upstream ceph_dashboard {
+        server vpn.ceph01.gnome.org:8443;
+        server vpn.ceph02.gnome.org:8443;
+        server vpn.ceph03.gnome.org:8443;
+    }
+
+    server {
+        listen 8080;
+        server_name ceph-dashboard.gnome.org;
+
+        location / {
+            proxy_pass https://ceph_dashboard;
+            health_check port=8443;
+        }
+    }
+}
diff --git a/conf.d/ceph-metrics.gnome.org.conf b/conf.d/ceph-metrics.gnome.org.conf
new file mode 100644
index 0000000..a680682
--- /dev/null
+++ b/conf.d/ceph-metrics.gnome.org.conf
@@ -0,0 +1,9 @@
+server {
+    listen 8080;
+    listen [::]:8080;
+    server_name ceph-metrics.gnome.org;
+
+    location / {
+        proxy_pass https://vpn.ceph-metrics.gnome.org:3000;
+    }
+}
diff --git a/conf.d/letsencrypt.gnome.org.conf b/conf.d/letsencrypt.gnome.org.conf
new file mode 100644
index 0000000..e2e932e
--- /dev/null
+++ b/conf.d/letsencrypt.gnome.org.conf
@@ -0,0 +1,9 @@
+server {
+    listen 8080;
+    listen [::]:8080;
+    server_name letsencrypt.gnome.org;
+
+    location / {
+        proxy_pass http://vpn.puppetmaster01.gnome.org;
+    }
+}
diff --git a/conf.d/splunk.gnome.org.conf b/conf.d/splunk.gnome.org.conf
new file mode 100644
index 0000000..9d05e8a
--- /dev/null
+++ b/conf.d/splunk.gnome.org.conf
@@ -0,0 +1,9 @@
+server {
+    listen 8080;
+    listen [::]:8080;
+    server_name splunk.gnome.org;
+
+    location / {
+        proxy_pass http://vpn.splunk01.gnome.org:8000;
+    }
+}


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]