Not clear which CDN you are referring to. The link you provided is for
including in a WAR - as Play has already done for you in the public dir.
Now if you want them to be hosted on a read CDN (not GAE), then you can
copy out the files and change all references to point to the CDN. Perhaps
someone may have written a module for it but it is simple: just change the
URL that references each file in /public and point it to your CDN URL.
> --
> You received this message because you are subscribed to the Google Groups
> "play-framework" group.
> To post to this group, send email to play-framework@googlegroups.com.
> To unsubscribe from this group, send email to
> play-framework+unsubscribe@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/play-framework?hl=en.
On Wed, Oct 17, 2012 at 8:54 AM, Tom Carchrae <t...@carchrae.net> wrote:
> Not clear which CDN you are referring to. The link you provided is for
> including in a WAR - as Play has already done for you in the public dir.
> Now if you want them to be hosted on a read CDN (not GAE), then you can
> copy out the files and change all references to point to the CDN. Perhaps
> someone may have written a module for it but it is simple: just change the
> URL that references each file in /public and point it to your CDN URL.
> Tom
> On Wed, Oct 17, 2012 at 8:42 AM, AleX <zakapa...@gmail.com> wrote:
>> Hello,
>> I host my app on Google App Engine using "play-gae" and siena module. So
>> far everything works well :)
>> --
>> You received this message because you are subscribed to the Google Groups
>> "play-framework" group.
>> To post to this group, send email to play-framework@googlegroups.com.
>> To unsubscribe from this group, send email to
>> play-framework+unsubscribe@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/play-framework?hl=en.
On Wed, Oct 17, 2012 at 8:54 AM, Tom Carchrae <t...@carchrae.net> wrote:
> sorry, read -> real CDN (not GAE)
> On Wed, Oct 17, 2012 at 8:54 AM, Tom Carchrae <t...@carchrae.net> wrote:
>> Not clear which CDN you are referring to. The link you provided is for
>> including in a WAR - as Play has already done for you in the public dir.
>> Now if you want them to be hosted on a read CDN (not GAE), then you can
>> copy out the files and change all references to point to the CDN. Perhaps
>> someone may have written a module for it but it is simple: just change the
>> URL that references each file in /public and point it to your CDN URL.
>> Tom
>> On Wed, Oct 17, 2012 at 8:42 AM, AleX <zakapa...@gmail.com> wrote:
>>> Hello,
>>> I host my app on Google App Engine using "play-gae" and siena module. So
>>> far everything works well :)
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "play-framework" group.
>>> To post to this group, send email to play-framework@googlegroups.com.
>>> To unsubscribe from this group, send email to
>>> play-framework+unsubscribe@googlegroups.com.
>>> For more options, visit this group at
>>> http://groups.google.com/group/play-framework?hl=en.
Thank you Tom for your answer, i'll try it soon :)
Do you know if there is a way to determine if my static ressources are
served by my play app or by the static-ressources-dedicated-servers ?
> On Wed, Oct 17, 2012 at 8:54 AM, Tom Carchrae <t...@carchrae.net> wrote:
>> sorry, read -> real CDN (not GAE)
>> On Wed, Oct 17, 2012 at 8:54 AM, Tom Carchrae <t...@carchrae.net> wrote:
>>> Not clear which CDN you are referring to. The link you provided is for
>>> including in a WAR - as Play has already done for you in the public dir.
>>> Now if you want them to be hosted on a read CDN (not GAE), then you can
>>> copy out the files and change all references to point to the CDN. Perhaps
>>> someone may have written a module for it but it is simple: just change the
>>> URL that references each file in /public and point it to your CDN URL.
>>> Tom
>>> On Wed, Oct 17, 2012 at 8:42 AM, AleX <zakapa...@gmail.com> wrote:
>>>> Hello,
>>>> I host my app on Google App Engine using "play-gae" and siena module.
>>>> So far everything works well :)
>>>> --
>>>> You received this message because you are subscribed to the Google
>>>> Groups "play-framework" group.
>>>> To post to this group, send email to play-framework@googlegroups.com.
>>>> To unsubscribe from this group, send email to
>>>> play-framework+unsubscribe@googlegroups.com.
>>>> For more options, visit this group at
>>>> http://groups.google.com/group/play-framework?hl=en.
> --
> You received this message because you are subscribed to the Google Groups
> "play-framework" group.
> To post to this group, send email to play-framework@googlegroups.com.
> To unsubscribe from this group, send email to
> play-framework+unsubscribe@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/play-framework?hl=en.
On Wed, Oct 17, 2012 at 9:02 AM, AleX <zakapa...@gmail.com> wrote:
> Thank you Tom for your answer, i'll try it soon :)
> Do you know if there is a way to determine if my static ressources are
> served by my play app or by the static-ressources-dedicated-servers ?
> On Wed, Oct 17, 2012 at 5:58 PM, Tom Carchrae <t...@carchrae.net> wrote:
>> I beg your pardon, I should have read your link more closely.
>> You probably want to specify the <static files> part of appengine-web.xml
>> and basically include the /public dir that way
>> On Wed, Oct 17, 2012 at 8:54 AM, Tom Carchrae <t...@carchrae.net> wrote:
>>> sorry, read -> real CDN (not GAE)
>>> On Wed, Oct 17, 2012 at 8:54 AM, Tom Carchrae <t...@carchrae.net> wrote:
>>>> Not clear which CDN you are referring to. The link you provided is for
>>>> including in a WAR - as Play has already done for you in the public dir.
>>>> Now if you want them to be hosted on a read CDN (not GAE), then you can
>>>> copy out the files and change all references to point to the CDN. Perhaps
>>>> someone may have written a module for it but it is simple: just change the
>>>> URL that references each file in /public and point it to your CDN URL.
>>>> Tom
>>>> On Wed, Oct 17, 2012 at 8:42 AM, AleX <zakapa...@gmail.com> wrote:
>>>>> Hello,
>>>>> I host my app on Google App Engine using "play-gae" and siena module.
>>>>> So far everything works well :)
>>>>> We would like to use the Google CDN provided for GAE apps (
>>>>> https://developers.google.com/appengine/docs/java/gettingstarted/stat...)
>>>>> but all our static files are in "public" play folder. Is there anyone who
>>>>> knows how can i tell to GAE to "CDN'd" these static files ?
>>>>> --
>>>>> You received this message because you are subscribed to the Google
>>>>> Groups "play-framework" group.
>>>>> To post to this group, send email to play-framework@googlegroups.com.
>>>>> To unsubscribe from this group, send email to
>>>>> play-framework+unsubscribe@googlegroups.com.
>>>>> For more options, visit this group at
>>>>> http://groups.google.com/group/play-framework?hl=en.
>> --
>> You received this message because you are subscribed to the Google Groups
>> "play-framework" group.
>> To post to this group, send email to play-framework@googlegroups.com.
>> To unsubscribe from this group, send email to
>> play-framework+unsubscribe@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/play-framework?hl=en.
> --
> You received this message because you are subscribed to the Google Groups
> "play-framework" group.
> To post to this group, send email to play-framework@googlegroups.com.
> To unsubscribe from this group, send email to
> play-framework+unsubscribe@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/play-framework?hl=en.