mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-20 04:23:34 +00:00
Reject link-local targets even when allowlisted, link private-target errors to endpoint settings, and tighten persistent-volume table widths.
12 lines
242 B
PHP
12 lines
242 B
PHP
<?php
|
|
|
|
namespace App\Rules;
|
|
|
|
/**
|
|
* Backwards-compatible name for outbound URL validation.
|
|
*
|
|
* External service URLs use the same private-target allowlist as webhooks
|
|
* and S3 endpoints.
|
|
*/
|
|
class SafeExternalUrl extends SafeWebhookUrl {}
|