This is basically a test of using gist.io as a blogging tool.
Using it might involve some headings and paragraphs.
<VirtualHost *:80> | |
ServerName registry.example.com | |
ServerSignature Off | |
RewriteEngine on | |
RewriteCond %{HTTPS} !=on | |
RewriteRule .* https://%{SERVER_NAME}%{REQUEST_URI} [NE,R,L] | |
</VirtualHost> | |
<VirtualHost *:443> |
<?php | |
use WindowsAzure\Blob\Models\ContainerAcl; | |
use WindowsAzure\Blob\Models\PublicAccessType; | |
// after having run a Job to create a thumbnail from our uploaded media item as seen: | |
// http://stackoverflow.com/questions/31070909/how-to-get-a-thumbnail-from-a-video-on-azure-media-services | |
// this asset contains our thumbnails | |
$asset = current($mediaServicesProxy->getJobOutputMediaAssets($job)); |