# Routes
# This file defines all application routes (Higher priority routes first)
# ~~~~

# Home page
GET     /                                       ApplicationController.insecureIndex
GET     /insecureindex                          ApplicationController.insecureIndex
GET     /secureindex                            ApplicationController.secureIndex

# Ignore favicon requests
GET     /favicon.ico                            404

# Map static resources from the /app/public folder to the /public path
GET     /public/                                staticDir:public

# Import the default ReverseProxy routes
*       /                                       module:reverseproxy

# Import the default InfoPlay routes
GET     /showinfoplay          					InfoPlayController.showInfoPlay

# Catch all
*       /{controller}/{action}                  {controller}.{action}
