[skfe] Point Gold to k8s instead of VM

We will keep the Gold VM running for a little while.

In case of emergency, break glass, roll this back,
push to skfe-1, skfe-2 and we'll be back on the VM
version instead of the k8s version.

Ingress change is here:
https://skia-review.googlesource.com/c/skia-public-config/+/233537/

Bug: skia:9096
Change-Id: I43214c4655851df8ba3f7e3314e7701902576549
Reviewed-on: https://skia-review.googlesource.com/c/buildbot/+/233460
Reviewed-by: Joe Gregorio <jcgregorio@google.com>
diff --git a/skfe/sys/skia_org_nginx b/skfe/sys/skia_org_nginx
index 513edf2..c4e4392 100644
--- a/skfe/sys/skia_org_nginx
+++ b/skfe/sys/skia_org_nginx
@@ -209,23 +209,13 @@
 
     client_max_body_size 100M;
 
+    # serve hashes directly to avoid bot outages if gold.skia.org goes down
     location /_/hashes {
       proxy_pass https://storage.googleapis.com/skia-infra-gm/hash_files/gold-prod-hashes.txt;
     }
 
-    # Serve images directly from the diff server.
-    location /img/ {
-      proxy_pass http://skia-diffserver-prod:8001;
-      proxy_set_header Host $host;
-    }
-
-    location /json/trstatus {
-        proxy_pass http://skia-gold-prod:19000;
-        proxy_set_header Host $host;
-    }
-
     location / {
-        proxy_pass http://skia-gold-prod:8001;
+        proxy_pass https://35.201.76.220;
         proxy_set_header Host $host;
     }
 }