Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

With the latest updates to Facebook and future upcoming changes, would I be able to develop apps hosted on a central domain? I.e., all of my apps will go on the back of https://www.myappdomain.com/ and structured as follows:

//https://www.myappdomain.com/clients/AppName1/ <br>
//https://www.myappdomain.com/clients/AppName2/ <br>
//https://www.myappdomain.com/clients/AppName3/ <br>
//https://www.myappdomain.com/clients/AppName4/ <br>
share|improve this question

1 Answer

We do this using subdomains and a wildcard certificate on mydomain.com. This gives more flexibility when setting up DNS I find.

https://client.myappdomain.com/

The only catch with this is that a wildcard certificate will only match one level of subdomain

https://client.myappdomain.com/ will work

https://app1.client.myappdomain.com/ will not work

To solve this, we conactenate the client and app name. This saves the cost of multiple wildcard certificates. So we end up with:

https://app1_client.myappdomain.com/

or

https://client_app1.myappdomain.com/

if you prefer.

share|improve this answer
This is great thanx – Philip Jonas Oct 7 '11 at 7:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.