There is no getting rid of the appspot domain. If you want your own domain to point to your app engine project, you need to setup Google apps for that domain.
And when you say for eclipse, you mean java right?
Joshua Woodward
http://joshuawoodward.com/ +
http://twitter.com/howtohtml5
Hi, I'm trying to host my website on GAE, it's just a few HTML page and images. I downloaded the Eclipse and all its required plugins and GAE SDK, I think I were able to upload (deploy) a project successfully, now I can see an index page on myapp.appspot.com wiich says "Hello App Engine!".
Now I have a few questions:
Do you I have to do anything special for hosting static HTML pages?
I read on the internet that with Python we should configure a file for static files, what about Eclipse?
I'm going to remove all unwanted files from project folders and add my website files and folders to the project and then deploy it. is this what should do?
If I want to point my own domain to my project, should I do it before uploading the project or after it? because I noticed GAE has its own domain (appspot.com) what if I don't want that my website be available at this address too?
Thank you for your help.
--
You received this message because you are subscribed to the Google Groups "Google App Engine" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/KnVU92RFIeAJ.
To post to this group, send email to google-a...@googlegroups.com.
To unsubscribe from this group, send email to google-appengi...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
Jeff
--
You received this message because you are subscribed to the Google Groups "Google App Engine" group.
To post to this group, send email to google-a...@googlegroups.com.
To unsubscribe from this group, send email to google-appengi...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.

There is no getting rid of the appspot domain. If you want your own domain to point to your app engine project, you need to setup Google apps for that domain.
And when you say for eclipse, you mean java right?
Joshua Woodward
You could check the url on the request and serve a redirect to the custom domain though if you didn't want appid.appspot.com to be shown.-Robert
> There is no getting rid of the appspot domain.
One minor nit - this is not quite correct.
If you set up a servlet filter, you can easily block or redirect all
traffic to the appspot.com virtual host. You don't need to serve
traffic on *.appspot.com.
Jeff
@Joshua Woodward: Oh! I thought Eclipse is only Java, I just Google'd and learned I can do Python too.
I think there are some tutorials on the internet about hosting an static website on GAE using Python. but which one is preferred and which one is easier?
I also downloaded the Python plugin for Eclipse, but since I uploaded my empty app to GAE without Python can I still do it for a full website with pages and images?
Could you please point me to a good tutorial about hosting a static website, I know there are many tutorials on the internet but I'm not sure which on is correct...
Hi Omne,Please find my answers to your questions below.
Do you I have to do anything special for hosting static HTML pages?
>>Nope, its far more easier, simpler and less resource consuming than servlets and JSP's.
I read on the internet that with Python we should configure a file for static files, what about Eclipse?
>>Yes, python does. I wrote a blog on how to do this in eclipse, the link is still under construction, I tried to make the stuff in it as simple as possible. Let me know in case you need any support.
I'm going to remove all unwanted files from project folders and add my website files and folders to the project and then deploy it. is this what should do?
>>Yes, Thats what you have to do.... the blog link above should guide you with the process in detail.
If I want to point my own domain to my project, should I do it before uploading the project or after it? because I noticed GAE has its own domain (appspot.com) what if I don't want that my website be available at this address too?
>>You can point to your own domain. http://www.recutrix.com is one such hosted app.>>You can point it to your own domain after hosting your app.>> for the last part, I do not have a answer, please post another question for it.Best regards,
Raghu
--
You received this message because you are subscribed to the Google Groups "Google App Engine" group.
To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/oNEdPNjiiTIJ.
Sorry, the logic to see if it's localhost isn't sound.This is a bit more robust and works to redirect users to the custom domain (www.dealscorcher.com in my case):class HomepageHander(webapp2.RequestHandler):def get(self):if (self.request.url.lower().find('dealscorcher.com') is -1 andself.request.url.lower().find('localhost') is -1):self.redirect('http://www.dealscorcher.com')return-Robert Fischer
On Sun, Aug 19, 2012 at 8:14 PM, Robert Fischer <rob...@3dslice.com> wrote:Hi Omne,I was trying to say you can check the url of the Request object to generate a redirect from appid.appspot.com to whatever your domain is.Here's a quick snippet of code you can put at the beginning of your HomepageHandler's get method. It will redirect all *.appspot.com urls to your appid. I added my local address to my development server as well so I can still run the devserver.class HomepageHander(webapp2.RequestHandler):def get(self):if (self.request.url.lower() is not 'http://www.dealscorcher.com' orself.request.url.lower() is not 'http://localhost:9999'):self.redirect('http://www.dealscorcher.com')return
-Robert Fischer