This file contains hidden or 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
5:30PM INF authenticate: verify session, refresh error="authenticate: refresh save failed: rpc error: code = DeadlineExceeded desc = context deadline exceeded" X-Forwarded-For=["10.12.51.32"] X-Forwarded-Host=["authenticate.domain.com"] X-Forwarded-Port=["443"] X-Forwarded-Proto=["https"] X-Real-Ip=["10.12.51.32"] ip=10.245.239.237 req_id=4c0e6c17-c28e-b492-c518-7249fbb8a3f5 user_agent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.4 Safari/605.1.15" | |
5:30PM DBG http-request X-Forwarded-For=["10.12.51.32"] X-Forwarded-Host=["authenticate.domain.com"] X-Forwarded-Port=["443"] X-Forwarded-Proto=["https"] X-Real-Ip=["10.12.51.32"] duration=10847.32015 email= group= host=authenticate.domain.com ip=10.245.239.237 method=GET path=/.pomerium/sign_in?pomerium_expiry=1580837706&pomerium_issued=1580837406&pomerium_redirect_uri=https%3A%2F%2Fhttpbin.domain.com%2F&pomerium_signature=T4lNcKSpX8INM-Hv5wwlZCgWRA_iBsJPNRg8saMTRv0%3D req_id=4c0e6c17-c28e-b492-c518-7249fbb |
This file contains hidden or 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
diff --git a/docs/configuration/examples/kubernetes/httpbin.yml b/docs/configuration/examples/kubernetes/httpbin.yml | |
index 51c5c41..4f51c44 100644 | |
--- a/docs/configuration/examples/kubernetes/httpbin.yml | |
+++ b/docs/configuration/examples/kubernetes/httpbin.yml | |
@@ -5,11 +5,9 @@ metadata: | |
labels: | |
app: httpbin | |
spec: | |
- type: NodePort | |
ports: |
This file contains hidden or 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
<?php | |
require 'vendor/autoload.php'; | |
use HelloWorld\SayHello; | |
$ini_array = parse_ini_file("/usr/local/config/mle.ini", true); | |
?> | |
<!doctype html> | |
<html lang="en"> | |
<head> | |
<!-- Required meta tags --> |
This file contains hidden or 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
{ | |
"repositories": [ | |
{ | |
"type": "composer", | |
"url": "https://composer.dealnews.net/" | |
} | |
], | |
"require": { | |
"php-libraries/content": "v2.*" | |
} |
This file contains hidden or 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
define mysql::db ( | |
$user, | |
$password, | |
$dbname = $name, | |
$charset = 'utf8', | |
$collate = $mysql::params::collate, | |
$host = 'localhost', | |
$grant = 'ALL', | |
$sql = '', | |
$enforce_sql = false, |