[DOCS] Update HAProxy code syntax style (#936)

pull/937/head
Amir Zarrinkafsh 2020-04-28 20:53:06 +10:00 committed by GitHub
parent dca8a5343a
commit 69859aa5d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 7 deletions

View File

@ -38,24 +38,24 @@ Below you will find commented examples of the following configuration:
With this configuration you can protect your virtual hosts with Authelia, by following the steps below: With this configuration you can protect your virtual hosts with Authelia, by following the steps below:
1. Add host(s) to the `protected-frontends` ACL to support protection with Authelia. 1. Add host(s) to the `protected-frontends` ACL to support protection with Authelia.
You can separate each subdomain with a `|` in the regex, for example: You can separate each subdomain with a `|` in the regex, for example:
```editorconfig ```
acl protected-frontends hdr(host) -m reg -i ^(jenkins|nextcloud|phpmyadmin)\.example\.com acl protected-frontends hdr(host) -m reg -i ^(jenkins|nextcloud|phpmyadmin)\.example\.com`
``` ```
2. Add host ACL(s) in the form of `host-service`, this will be utilised to route to the correct 2. Add host ACL(s) in the form of `host-service`, this will be utilised to route to the correct
backend upon successful authentication, for example: backend upon successful authentication, for example:
```editorconfig ```
acl host-jenkins hdr(host) -i jenkins.example.com acl host-jenkins hdr(host) -i jenkins.example.com
acl host-jenkins hdr(host) -i nextcloud.example.com acl host-jenkins hdr(host) -i nextcloud.example.com
acl host-phpmyadmin hdr(host) -i phpmyadmin.example.com acl host-phpmyadmin hdr(host) -i phpmyadmin.example.com
``` ```
3. Add backend route for your service(s), for example: 3. Add backend route for your service(s), for example:
```editorconfig ```
use_backend be_jenkins if host-jenkins use_backend be_jenkins if host-jenkins
use_backend be_nextcloud if host-nextcloud use_backend be_nextcloud if host-nextcloud
use_backend be_phpmyadmin if host-phpmyadmin use_backend be_phpmyadmin if host-phpmyadmin
``` ```
4. Add backend definitions for your service(s), for example: 4. Add backend definitions for your service(s), for example:
```editorconfig ```
backend be_jenkins backend be_jenkins
server jenkins jenkins:8080 server jenkins jenkins:8080
backend be_nextcloud backend be_nextcloud
@ -73,7 +73,7 @@ to TLS verification as well as header rewriting. An example of this configuratio
#### Configuration #### Configuration
##### haproxy.cfg ##### haproxy.cfg
```editorconfig ```
global global
# Path to haproxy-auth-request # Path to haproxy-auth-request
lua-load /usr/local/etc/haproxy/auth-request.lua lua-load /usr/local/etc/haproxy/auth-request.lua
@ -122,7 +122,7 @@ backend be_nextcloud
``` ```
##### haproxy.cfg (TLS enabled Authelia) ##### haproxy.cfg (TLS enabled Authelia)
```editorconfig ```
global global
# Path to haproxy-auth-request # Path to haproxy-auth-request
lua-load /usr/local/etc/haproxy/auth-request.lua lua-load /usr/local/etc/haproxy/auth-request.lua