I am trying to host my site on google app engine. I have created an 
app.yaml file but when I **deploy**, I am getting the 502 bad Gateway. 

Below is my nginx.conf file. 

    events {}

    http {
    server {
    server_name ishmaelsu.com;
    access_log /error.log;
    
    listen 8082;
    return 301 https://$host$request_uri;
    
    location / {
    root IshmaelSunday;
    index index.html;
    }
    }
    }

This is my log file after running **gcloud app logs read**

[![enter image description here][1]][1] 


After running `netstat -tulp | grep 8082`, this is what I get. 

[![enter image description here][2]][2]


  [1]: https://i.stack.imgur.com/jUCro.png
  [2]: https://i.stack.imgur.com/BRnD1.png

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/327e0ca5-43d5-4e0b-84ab-6843d448f1ae%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to