mirror of
https://github.com/envoyr/nginx-configurator.git
synced 2026-04-28 04:06:18 +00:00
Initial commit
This commit is contained in:
40
examples/build.php
Normal file
40
examples/build.php
Normal file
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
|
||||
use Madkom\NginxConfigurator\Builder;
|
||||
use Madkom\NginxConfigurator\Config\Location;
|
||||
use Madkom\NginxConfigurator\Node\Directive;
|
||||
use Madkom\NginxConfigurator\Node\Literal;
|
||||
use Madkom\NginxConfigurator\Node\Param;
|
||||
|
||||
require __DIR__ . '/../vendor/autoload.php';
|
||||
|
||||
$builder = new Builder();
|
||||
|
||||
$server = $builder->addServerNode(80);
|
||||
$server->append(new Directive('error_log', [new Param('/var/log/nginx/error.log'), new Param('debug')]));
|
||||
$server->append(new Location(new Param('/test'), null, [
|
||||
new Directive('error_page', [new Param('401'), new Param('@unauthorized')]),
|
||||
new Directive('set', [new Param('$auth_user'), new Literal('none')]),
|
||||
new Directive('auth_request', [new Param('/auth')]),
|
||||
new Directive('proxy_pass', [new Param('http://test-service')]),
|
||||
]));
|
||||
$server->append(new Location(new Param('/auth'), null, [
|
||||
new Directive('proxy_pass', [new Param('http://auth-service:9999')]),
|
||||
new Directive('proxy_bind', [new Param('$server_addr')]),
|
||||
new Directive('proxy_redirect', [new Param('http://$host'), new Param('https://$host')]),
|
||||
new Directive('proxy_set_header', [new Param('Content-Length'), new Literal("")]),
|
||||
new Directive('proxy_pass_request_body', [new Param('off')]),
|
||||
]));
|
||||
$server->append(new Location(new Param('@unauthorized'), null, [
|
||||
new Directive('return', [new Param('302'), new Param('/login?backurl=$request_uri')]),
|
||||
]));
|
||||
$server->append(new Location(new Param('/login'), null, [
|
||||
new Directive('expires', [new Param('-1')]),
|
||||
new Directive('proxy_pass', [new Param('http://identity-provider-service')]),
|
||||
new Directive('proxy_bind', [new Param('$server_addr')]),
|
||||
new Directive('proxy_redirect', [new Param('http://$host'), new Param('https://$host')]),
|
||||
new Directive('proxy_set_header', [new Param('Content-Length'), new Literal("")]),
|
||||
new Directive('proxy_pass_request_body', [new Param('off')]),
|
||||
]));
|
||||
|
||||
print($builder->dump());
|
||||
Reference in New Issue
Block a user