Phalcon CDN integration

Before you start

  • Before you take any steps please back up your files and database.
  • In the following, we will integrate a CDN service using the CDN domain 12345.r.cdnsun.net. Please visit the Services/How-To section to obtain your CDN domain.
  • To integate a CDN service on https:// website you can use https://12345.r.cdnsun.net or you can use a custom CDN domain with SSL enabled.
  • If your website embeds custom fonts then please first enable CORS for them.
  • Before you take any steps please make sure that your CDN domain is ready-to-use here.

Create CDN Static service

Please refer to Creating a CDN Static service for more details.

Enable CDN in Phalcon

Enable CDN with Phalcon\Mvc\Url component

<?php

$url = new Phalcon\Mvc\Url();
$url->setStaticBaseUri('http://12345.r.cdnsun.net');

// Will output http://12345.r.cdnsun.net/image.jpeg
$url->getStatic('image.jpeg')

Please refer here for more details.

Enable CDN with Phalcon\Assets component

Create and prefix collection in controller

<?php

use Phalcon\Mvc\Controller;

class IndexController extends Controller
{
    public function indexAction()
    {
        $headerCollection = $this->assets->collection('header');
        $headerCollection->setPrefix('http://12345.r.cdnsun.net');
        $headerCollection->addJs('js/script.js');

Output collection in view

<?php $this->assets->outputJs('header'); ?>

will output

<script type="text/javascript" src="http://12345.r.cdnsun.net/js/script.js"></script>

Please refer here for more details.

Notes

  • View HTML source code of your web pages to verify that you are using CDN, you should see source attribute of your images, CSS, JavaScript, etc. beginning with your CDN domain.
  • Don't see your CDN domain in source code of your web pages? If your website is using any cache plug-in/mechanism then you might want to clear/flush its cache.
  • Having troubles with custom fonts? Please refer to Using custom fonts with CDN - setting CORS for more details.
  • Still having troubles? Check your CDN URLs in our CDN content check or please refer to Debugging a CDN service for more hints.

Contact Us

  ______    _____    ______   
 /_   _//  |  ___|| |      \\ 
   | ||    | ||__   |  --  // 
  _| ||    | ||__   |  --  \\ 
 /__//     |_____|| |______// 
 `--`      `-----`  `------`