Orchard/src/Orchard.Web/Modules/Orchard.Azure.MediaServices
Benedek Farkas 530d2a9221
8773: Recompiling client-side assets on 1.10.x (#8779)
* Updating rebuilt client-side assets that only changed in terms of sourceMappingURL

* Updating rebuilt client-side assets that changed functionally

* Fixing/simplifying Layout editor toolbox stickyness and height restriction to viewport

* Compile workflow: Upgrading actions/checkout and microsoft/setup-msbuild actions to their latest versions

* Compile workflow: Adding steps to validate that the client-side assets are up-to-date

* Compile workflow: Temporarily disabling MSBuild steps

* Moving client-side assets build to a separate job in the compile workflow

* Updating client-side compilation job

* Temporarily disabling the .NET build

* Separating package install from asset rebuild

* Adding debug command

* Fixing working directory

* Debugging

* Attempting to get rid of false positives due to line ending changes

* Removing debug code

* Checking asset validation by modifying Orchard.Resources/Assets/Less/Bootstrap/variables.less, but not its derivatives

* Revert "Checking asset validation by modifying Orchard.Resources/Assets/Less/Bootstrap/variables.less, but not its derivatives"

This reverts commit 3fc9b8362b.

* Revert "Temporarily disabling the .NET build"

This reverts commit 2a8fef7793.

* Fixing error message when client-side assets are not up-to-date
2024-04-16 16:55:04 +02:00
..
Assets Added Uri. 2015-11-21 15:49:23 +01:00
Content Cleaned up and reformatted all Web.config files according to #6072. 2016-01-22 20:38:34 +01:00
Controllers Fixed various typos: (#8512) 2021-10-29 08:39:38 +02:00
Drivers
Events
Handlers
Helpers
Images Cleaned up and reformatted all Web.config files according to #6072. 2016-01-22 20:38:34 +01:00
Infrastructure
Models Merge branch '1.9.x' into dev 2015-08-17 00:03:59 +01:00
Navigation
Properties Bumping version number to 1.10.3 2019-02-19 21:00:04 +01:00
Scripts 8773: Recompiling client-side assets on 1.10.x (#8779) 2024-04-16 16:55:04 +02:00
Services Removed redundant thread synchronization code from modules which now use distributed locks. 2015-09-06 21:41:30 +02:00
Shapes
Styles 8773: Recompiling client-side assets on 1.10.x (#8779) 2024-04-16 16:55:04 +02:00
Tests/Microsoft.CloudMedia.Tests 8776: Upgrade Microsoft.CodeDom.Providers.DotNetCompilerPlatform to latest version (#8777) 2024-04-04 16:35:29 +02:00
ViewModels
Views Sebros/fixes (#8141) 2018-12-03 14:17:10 +01:00
Assets.json
Migrations.cs Adding WithIdentity() content metadata helper to add IdentityPart in migrations and changing affected code to use this 2016-01-04 19:09:00 +01:00
Module.txt Bumping version number to 1.10.3 2019-02-19 21:00:04 +01:00
Orchard.Azure.MediaServices.csproj 8776: Upgrade Microsoft.CodeDom.Providers.DotNetCompilerPlatform to latest version (#8777) 2024-04-04 16:35:29 +02:00
packages.config 8776: Upgrade Microsoft.CodeDom.Providers.DotNetCompilerPlatform to latest version (#8777) 2024-04-04 16:35:29 +02:00
Permissions.cs
Placement.info
Readme.txt
Web.config 8776: Upgrade Microsoft.CodeDom.Providers.DotNetCompilerPlatform to latest version (#8777) 2024-04-04 16:35:29 +02:00

CONFIGURING ORCHARD FOR THE MODULE
**********************************
    
1. Increase the maximum request content length for Orchard
----------------------------------------------------------

The module provides two ways of uploading media files to Microsoft Azure Media Services (WAMS):
* Direct CORS-based upload to Microsoft Azure Blob Storage. This is used by default if the browser supports CORS.
* Proxied upload where files are first uploaded to Orchard where they are kept in local file system storage temporarily, before being ingested into WAMS by a server-side background process. This is used as a fallback for browsers that don't support CORS.

When using proxied upload, IIS places limits on the maximum allowed upload file sizes. By default, Orchard is configured in its Web.config to allow file uploads of up to 64 MB. If the module will be used to ingest media files larger than 64 MB these values need to be increased, or the first upload step (from the user's/editor's local machine to Orchard temporary storage) will fail.

Specifically, the following attributes need to be reconfigured with a value appropriate for the size of media files with which the module is intended to be used:
    - system.web/httpRuntime/@maxRequestLength
    - system.webServer/security/requestFiltering/requestLimits/@maxAllowedContentLength
    
Both of these attributes must be configured with the same value, or whichever value is smaller will effectively impose a limit on the allowed media file upload size.

2. Configuring the logging level for the module
-----------------------------------------------

The module logs messages of different severity levels and verbosity through the standard Orchard logging pipeline.

To ensure the most verbose logging output from the module, while limiting the verbosity level of other logging sources, a <logger> element can be added to the file Config/Log4net.config in the Orchard.Web and/or Orchard.Azure.Web projects:

    <logger name="Orchard.Azure.MediaServices">
        <!-- Log verbosely from the Orchard.Azure.MediaServices module. -->
        <priority value="DEBUG" />
        <!-- Send DEBUG level logging data to debugger console and debug file, but not to error file. -->
        <appender-ref ref="debugger"/>
        <appender-ref ref="debug-file" />
    </logger>

CONFIGURING THE MODULE
**********************
   
1. Configuring the WAMS account credentials
-------------------------------------------

After the module is installed and the feature "Microsoft Azure Media Services" is enabled, the WAMS account credentials must be configured in the "Windows Azure Media" settings section in the Orchard administration dashboard. This information can be obtained from the Windows Azure management portal.

2. Configuring the Microsoft Azure Storage account credentials
------------------------------------------------------------

To use the direct CORS-based upload a CORS rule must be added to the Microsoft Azure Storage account used by the configured WAMS instance. The module can do this automatically, but it needs the Windows Azure Storage account credentials. Specify the account key for the underlying Windows Azure Storage account used by your Windows Azure Media Services instance if you want to automatically enable CORS support with the appropriate origin URLs for the Orchard site. CORS rules will be added to the storage account for both the configured base URL of the site, and the URL on which you are accessing the site when saving the credentials. If you leave this field blank you will have to manually enable the appropriate CORS support for your Windows Azure Storage account using PowerShell.