mirror of
https://github.com/fosrl/pangolin.git
synced 2025-06-24 14:18:55 +02:00
allow hash in url path rule
This commit is contained in:
parent
5529beaf6e
commit
90366da61b
2 changed files with 2 additions and 3 deletions
|
@ -56,7 +56,7 @@ export function isValidUrlGlobPattern(pattern: string): boolean {
|
||||||
// - unreserved (A-Z a-z 0-9 - . _ ~)
|
// - unreserved (A-Z a-z 0-9 - . _ ~)
|
||||||
// - sub-delims (! $ & ' ( ) * + , ; =)
|
// - sub-delims (! $ & ' ( ) * + , ; =)
|
||||||
// - @ : for compatibility with some systems
|
// - @ : for compatibility with some systems
|
||||||
if (!/^[A-Za-z0-9\-._~!$&'()*+,;=@:]$/.test(char)) {
|
if (!/^[A-Za-z0-9\-._~!$&'()*+,;#=@:]$/.test(char)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -455,8 +455,7 @@ export default function ReverseProxyTargets(props: {
|
||||||
SSL Configuration
|
SSL Configuration
|
||||||
</SettingsSectionTitle>
|
</SettingsSectionTitle>
|
||||||
<SettingsSectionDescription>
|
<SettingsSectionDescription>
|
||||||
Setup SSL to secure your connections with Let's
|
Setup SSL to secure your connections with certificates
|
||||||
Encrypt certificates
|
|
||||||
</SettingsSectionDescription>
|
</SettingsSectionDescription>
|
||||||
</SettingsSectionHeader>
|
</SettingsSectionHeader>
|
||||||
<SettingsSectionBody>
|
<SettingsSectionBody>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue