Forums

Website shows Coming soon Page

I have created an app in my webapp-xxxx.pythonanywhere.com.As per the doc i have followed all steps.But the link is showing coming soon page of pythonanywhere.The error log page and access log is also empty,server log is showing log of some process and i also compared with my previously configured site in pythonanywhere(free account) everything is correct. I also went through my wsgi.py file in /var/www i didn't see anything wrong there and my current account is not a free account its a paid one.

What could have gone wrong here.Is there any way to see the issue or error that happened here

You're seeing the "Coming soon" page because your web app is not at the correct domain. From what I can see, your naked domain gets redirected to www. and your web app is at the naked domain, so when the request gets to PythonAnywhere, it's for the wrong domain. Have a look at the docs

Is there any way to re-edit or change the name of wsgi file thats already created.

Because in my web tab ,It shows configuration for example.com

In CNAME it is webapp-xxxx.pythonanywhere.com and in wsgi file name is like example_com_wsgi_py. I need to know whether i need to change wsgi to same name of CNAME or username and is it possible to re-edit or re-name the wsgi file according to the above the requirement.

If your webapp is really at example.com, and not at www.example.com, then you should read the section titled "Domains without a www prefix (naked domains)" on this page. If you do, in fact, need to move your web app, there are instructions here. Let me know if there is anything that is unclear there.

I went through the link and its telling about forward redirection in godaddy(DNS service am using), but even am typing www.example.com,its still shows the welcome page.My doubt is there any problem with my wsgi file inside /var/www.There the file name is like example_com_wsgi_py not www_example_com_wsgi_py.

Am totally stuck here

I went through the link and its telling about forward redirection in godaddy(DNS service am using), but even am typing www.example.com,its still shows the welcome page.My doubt is there any problem with my wsgi file inside /var/www.There the file name is like example_com_wsgi_py not www_example_com_wsgi_py in my current app.

Am totally stuck here

Can i delete my current app and create a new one,with all configuration from beginning,With the plan i have used i cant create two apps.Is there any problem deleting my current app completely from the web tab by clicking delete example.com

Hi there,

Yes, you can delete your current webapp by clicking the delete button. The wsg file will be backed up for you (you can later acces it at /var/www/), and your source code will not be deleted.

Conrad