$/
artifacts/
build/
docs/
lib/
packages/
samples/
src/
tests/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Cloudflare Workers script to update IP lists from Microsoft Service Tags | |
| // Configure these environment variables in your worker: | |
| // - CLOUDFLARE_API_KEY: Your Cloudflare API key | |
| // - CLOUDFLARE_ACCOUNT_ID: Your Cloudflare account ID | |
| // - CLOUDFLARE_LIST_ID: The ID of the list to update | |
| // - SERVICE_NAME: The service name to filter (e.g., "ApplicationInsightsAvailability") | |
| const MICROSOFT_SERVICE_TAGS_URL = 'https://download.microsoft.com/download/7/1/d/71d86715-5596-4529-9b13-da13a5de5b63/ServiceTags_Public_20250616.json'; | |
| export default { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public interface ISmtpMailDeliverySettings | |
| { | |
| string Host { get; } | |
| int Port { get; } | |
| string Username { get; } | |
| string Password { get; } | |
| bool EnableSSL { get; } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using Microsoft.Extensions.Options; | |
| using Microsoft.AspNetCore.HttpOverrides; | |
| using Lib.AspNetCore.CloudFlareConnectingIp; | |
| namespace Microsoft.AspNetCore.Builder | |
| { | |
| public static class CloudFlareConnectingIpExtensions | |
| { | |
| public static IApplicationBuilder UseCloudFlareConnectingIp(this IApplicationBuilder app) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "http://json-schema.org/draft-04/schema#", | |
| "title": "propertyEditors", | |
| "description": "An array of Umbraco Property Editors", | |
| "type": "object", | |
| "properties": { | |
| "name": { | |
| "description": "The friendly name of the property editor, shown in the Umbraco backoffice", | |
| "type": "string" | |
| }, |