-
Notifications
You must be signed in to change notification settings - Fork 653
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
www/caddy: Add Layer4 openvpn, winbox and quic matcher (#4325)
* www/caddy: Add CRUD for Layer4 OpenVPN matcher with mode and static key support. * www/caddy: Export static keys to the filesystem as uuid.key * www/caddy: Remove validation that checks for multiple keys, help text is enough. * www/caddy: Expand layer4 template for all supported OpenVPN modes. * www/caddy: Prevent multiple static keys for modes other than crypt2_client. Fix helptexts. * www/caddy: Add unique constraint to description of openvpn static key * www/caddy: Changelog and version bump * www/caddy: Make static key optional when choosing the tls mode in openvpn matcher * www/caddy: Prepare new Layer7 Matcher Tab for more customizable matchers in the future. * www/caddy: Add Layer4 QUIC matcher. * www/caddy: Rename matcherTab * www/caddy: Revert a4ea0cb since its non operational and will not be needed for a while anyway * www/caddy: Changelog
- Loading branch information
Showing
11 changed files
with
316 additions
and
55 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
PLUGIN_NAME= caddy | ||
PLUGIN_VERSION= 1.7.3 | ||
PLUGIN_VERSION= 1.7.4 | ||
PLUGIN_DEPENDS= caddy-custom | ||
PLUGIN_COMMENT= Modern Reverse Proxy with Automatic HTTPS, Dynamic DNS and Layer4 Routing | ||
PLUGIN_MAINTAINER= [email protected] | ||
|
This file contains 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
This file contains 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
This file contains 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
This file contains 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
13 changes: 13 additions & 0 deletions
13
www/caddy/src/opnsense/mvc/app/controllers/OPNsense/Caddy/forms/dialogLayer4Openvpn.xml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<fields> | ||
<field> | ||
<id>layer4openvpn.description</id> | ||
<label>Description</label> | ||
<type>text</type> | ||
</field> | ||
<field> | ||
<id>layer4openvpn.StaticKey</id> | ||
<label>Static Key</label> | ||
<type>textbox</type> | ||
<help>Paste an OpenVPN Static key.</help> | ||
</field> | ||
</fields> |
This file contains 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
This file contains 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
Oops, something went wrong.