Hello,
It seems your issue of being able to use custom domains with a reverse proxy (in front of GAE ) has been answered and accepted by you already. However, if you would like to further investigate what other Request Headers are available on GAE you can go to the following: For Google App Engine - Standard: You can find Request Headers for Standard here <https://cloud.google.com/appengine/docs/standard/go/reference/request-response-headers> . For Google App Engine - Flexible: You can find Request Headers for Flex here <https://cloud.google.com/appengine/docs/flexible/python/reference/request-headers#app_engine-specific_headers> . As mentioned in the previous post, they are some X headers that you have included that cannot be sent. However, if you have built your GAE app on Flexible then you can include the following headers: X-Forwarded-For: [CLIENT_IP(s)], [global forwarding rule IP] X-Forwarded-Proto [http | https] On Sunday, October 21, 2018 at 8:58:19 AM UTC-4, Dreampuf wrote: > > Thank you for the answer. I tried it can work when I remove the 'HOST' > rewrite. > > 在 2018年10月21日星期日 UTC-4上午1:24:10,Attila-Mihaly Balazs写道: >> >> I don't think you can send those X headers to GAE (X-Real-IP and so on). >> Other than that it should certainly work since multiple people have >> reported using this technique to work around the "GAE using custom domains >> in considerably slower than GAE using the appspot domain" issue (especially >> in the Asia regions). >> >> So, yes, you will loose the "original IP" information, but other than >> that it should work. >> >> Attila >> > -- 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/0fb8e724-0def-4278-bd13-4c1df9dd4469%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
