diff --git a/Makefile b/Makefile index 27f1a67832f9f338c31181efaac7fd8266bc6e5d..445118a6f81f2198b9638b724aa63c77354a9896 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ NAME=keycloak-proxy AUTHOR=gambol99 AUTHOR_EMAIL=gambol99@gmail.com REGISTRY=quay.io -GOVERSION ?= 1.8.3 +GOVERSION ?= 1.9 ROOT_DIR=${PWD} HARDWARE=$(shell uname -m) GIT_SHA=$(shell git --no-pager describe --always --dirty) diff --git a/templates/forbidden.html.tmpl b/templates/forbidden.html.tmpl index abbe6cd2ef1127d5333016e7334b34376885f59d..d5b94b7d2046a183c335f6c21a4c8991239d3af8 100644 --- a/templates/forbidden.html.tmpl +++ b/templates/forbidden.html.tmpl @@ -1,35 +1,34 @@ <!DOCTYPE html> <html> -<head> - <meta charset="UTF-8"> - <title>403 - Access Forbidden</title> - <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"> - <script src="https://code.jquery.com/jquery-1.11.3.min.js"></script> - <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script> - <style> - .oops { - font-size: 9em; - letter-spacing: 2px; - } - .message { - font-size: 3em; - } - </style> -</head> -<body> - <div class="container text-center"> - <div class="row vcenter" style="margin-top: 20%;"> - <div class="col-md-12"> - <div class="error-template"> - <h1 class="oops">Oops!</h1> - <h2 class="message">403 Permission Denied</h2> - <div class="error-details"> - Sorry, you do not have access to this page, please contact your administrator + <head> + <meta charset="UTF-8"> + <title>403 - Access Forbidden</title> + <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"> + <script src="https://code.jquery.com/jquery-1.11.3.min.js"></script> + <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script> + <style> + .oops { + font-size: 9em; + letter-spacing: 2px; + } + .message { + font-size: 3em; + } + </style> + </head> + <body> + <div class="container text-center"> + <div class="row vcenter" style="margin-top: 20%;"> + <div class="col-md-12"> + <div class="error-template"> + <h1 class="oops">Oops!</h1> + <h2 class="message">403 Permission Denied</h2> + <div class="error-details"> + Sorry, you do not have access to this page, please contact your administrator + </div> </div> </div> </div> </div> -</div> - -</body> + </body> </html>