aboutsummaryrefslogtreecommitdiff
path: root/ci/config/routes.xml
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2024-06-24 16:46:04 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2024-06-24 16:46:04 -0400
commita355e12201f50d8f52738d225c270042913030e2 (patch)
tree57cc8e43357ae0cf4cdd72e8f43d5da2357c1f22 /ci/config/routes.xml
parent86d6ba0c9869f21b2b16728abf4cb20fcf6ed769 (diff)
ci: Consolidate ci configuration
Diffstat (limited to 'ci/config/routes.xml')
-rw-r--r--ci/config/routes.xml46
1 files changed, 0 insertions, 46 deletions
diff --git a/ci/config/routes.xml b/ci/config/routes.xml
deleted file mode 100644
index 85f9830..0000000
--- a/ci/config/routes.xml
+++ /dev/null
@@ -1,46 +0,0 @@
-<?xml version="1.0" encoding="utf-8" ?>
-
-<!--Routes container element holds a collection of route elements-->
-<routes>
- <!--
- Example route configuration for a single page app
- where the tree looks like this:
- / (index.html)
- /assets (assets directory) (css and js files)
-
- Wildcard hosts match all hosts that do not have rules with more specific hosts
- -->
-
- <!--
- Allow assets directory to pass through for all requests, using the Continue routine (1)
-
- Because this route has a more specific path than the catch all route
- it will be processed first
- -->
- <route routine="1" privilege="0">
-
- <!--Wildcard host-->
- <hostname>*</hostname>
-
- <!--All paths that start with /assets/ will be matched-->
- <path>/assets/*</path>
- </route>
-
- <!--Show the index file when navigating to /-->
- <route routine="4" privilege="0">
- <hostname>*</hostname>
- <path>/</path>
- <alternate>index.html</alternate>
- </route>
-
- <!--Redirect all other pages back to the app (homepage)-->
- <route routine="2" privilege="0">
- <hostname>*</hostname>
- <path>/*</path>
- <alternate>/</alternate>
- </route>
-
-
- <!--All routes that do not match will be allowed, this is only / since it does not have a matching rule-->
-
-</routes> \ No newline at end of file