mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 10:18:54 +00:00
83 lines
2.6 KiB
JavaScript
83 lines
2.6 KiB
JavaScript
// Add all server-side redirects here. Will be loaded by next.config.mjs.
|
|
|
|
module.exports = [
|
|
/*
|
|
*
|
|
* Windows GUI Client
|
|
*
|
|
*/
|
|
{
|
|
source: "/dl/firezone-client-gui-windows/latest/x86_64",
|
|
destination:
|
|
// mark:current-gui-version
|
|
"https://www.github.com/firezone/firezone/releases/download/gui-client-1.1.5/firezone-client-gui-windows_1.1.5_x86_64.msi",
|
|
permanent: false,
|
|
},
|
|
/*
|
|
*
|
|
* Linux Clients
|
|
*
|
|
*/
|
|
{
|
|
source: "/dl/firezone-client-gui-linux/latest/x86_64",
|
|
destination:
|
|
// mark:current-gui-version
|
|
"https://www.github.com/firezone/firezone/releases/download/gui-client-1.1.5/firezone-client-gui-linux_1.1.5_x86_64.deb",
|
|
permanent: false,
|
|
},
|
|
{
|
|
source: "/dl/firezone-client-gui-linux/latest/aarch64",
|
|
destination:
|
|
// mark:current-gui-version
|
|
"https://www.github.com/firezone/firezone/releases/download/gui-client-1.1.5/firezone-client-gui-linux_1.1.5_aarch64.deb",
|
|
permanent: false,
|
|
},
|
|
{
|
|
source: "/dl/firezone-client-headless-linux/latest/x86_64",
|
|
destination:
|
|
// mark:current-headless-version
|
|
"https://www.github.com/firezone/firezone/releases/download/headless-client-1.1.3/firezone-client-headless-linux_1.1.3_x86_64",
|
|
permanent: false,
|
|
},
|
|
{
|
|
source: "/dl/firezone-client-headless-linux/latest/aarch64",
|
|
destination:
|
|
// mark:current-headless-version
|
|
"https://www.github.com/firezone/firezone/releases/download/headless-client-1.1.3/firezone-client-headless-linux_1.1.3_aarch64",
|
|
permanent: false,
|
|
},
|
|
{
|
|
source: "/dl/firezone-client-headless-linux/latest/armv7",
|
|
destination:
|
|
// mark:current-headless-version
|
|
"https://www.github.com/firezone/firezone/releases/download/headless-client-1.1.3/firezone-client-headless-linux_1.1.3_armv7",
|
|
permanent: false,
|
|
},
|
|
/*
|
|
*
|
|
* Gateway
|
|
*
|
|
*/
|
|
{
|
|
source: "/dl/firezone-gateway/latest/x86_64",
|
|
destination:
|
|
// mark:current-gateway-version
|
|
"https://www.github.com/firezone/firezone/releases/download/gateway-1.1.2/firezone-gateway_1.1.2_x86_64",
|
|
permanent: false,
|
|
},
|
|
{
|
|
source: "/dl/firezone-gateway/latest/aarch64",
|
|
destination:
|
|
// mark:current-gateway-version
|
|
"https://www.github.com/firezone/firezone/releases/download/gateway-1.1.2/firezone-gateway_1.1.2_aarch64",
|
|
permanent: false,
|
|
},
|
|
{
|
|
source: "/dl/firezone-gateway/latest/armv7",
|
|
destination:
|
|
// mark:current-gateway-version
|
|
"https://www.github.com/firezone/firezone/releases/download/gateway-1.1.2/firezone-gateway_1.1.2_armv7",
|
|
permanent: false,
|
|
},
|
|
];
|