Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>App Engine allows you to run multiple deployments of an application at the same time. These are differentiated using 'versions'. When you deploy an application, you specify the version that you are deploying in the <code>app.yaml</code> file. If you change the version to something else, then rather than overriding the existing copy of your app deployed under that version, a new copy of app will be deployed under the new version.</p> <p>Each version is addressable by a unique URL of the form <code>&lt;version name&gt;-dot-&lt;app name&gt;.appspot.com</code>. <code>&lt;version name&gt;.&lt;app name&gt;.appspot.com</code> also works if you don't need SSL.</p> <p>In addition, a specific version served from <code>&lt;app name&gt;.appspot.com</code> - this is called the default version. You can change which version is the default from the Versions tab in the App Engine admin console at <a href="http://appengine.google.com/" rel="nofollow">http://appengine.google.com/</a>. </p> <p>Now, to your problem - your app is deployed under the version <code>wp</code>, which is why you can access it from that URL. If you want to access it from <code>YOUR-APP-ID.appspot.com</code> then you'll need to make it the default.</p> <p>When setting up a custom domain, you need to map your app engine app to a subdomain. For example you might map <code>myapp</code> to the subdomain, <code>www</code>, meaning <code>myapp.appspot.com</code> is accessible from <code>www.mydomain.com</code>. This will serve the default version of <code>myapp</code>, as you'd expect.</p> <p>With versions, these are extended, so <code>wp-dot-myapp.appspot.com</code> is accessible from <code>wp.www.appspot.com</code>.</p> <p>Hope that helps!</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload