authelia - various fixes
This commit is contained in:
@@ -54,7 +54,7 @@ services:
|
||||
- app1.example.com_REMOTE_PHP=myapp1
|
||||
- app1.example.com_REMOTE_PHP_PATH=/app
|
||||
- app2.example.com_SERVE_FILES=no
|
||||
- app2.example.com_USE_REVERSE_PROXY=myapp2
|
||||
- app2.example.com_USE_REVERSE_PROXY=yes
|
||||
- app2.example.com_REVERSE_PROXY_URL=/
|
||||
- app2.example.com_REVERSE_PROXY_HOST=http://myapp2
|
||||
|
||||
|
||||
10
examples/authelia/web-files/app2.example.com/index.php
Normal file
10
examples/authelia/web-files/app2.example.com/index.php
Normal file
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
echo "Welcome to app2 !<br><br>";
|
||||
|
||||
echo "REMOTE_USER = " . $_SERVER['HTTP_REMOTE_USER'] . "<br>";
|
||||
echo "REMOTE_GROUPS = " . $_SERVER['HTTP_REMOTE_GROUPS'] . "<br>";
|
||||
echo "REMOTE_NAME = " . $_SERVER['HTTP_REMOTE_NAME'] . "<br>";
|
||||
echo "REMOTE_EMAIL = " . $_SERVER['HTTP_REMOTE_EMAIL'] . "<br>";
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user