Skip to main content

Manages redirect rules in haproxy configuration based on subdomain acl.

Project description

# haproxysubdomains

Manages redirect rules in haproxy configuration based on subdomain acl.

Watch out, this will remove any comment in the haproxy config.

Uses [`pyhaproxy`](https://github.com/imjoey/pyhaproxy) under the
hood.

## Usage
```
$ cat test.cfg
```

```
frontend http
bind *:80


frontend https
bind *:443 ssl crt /etc/ssl/my_cert/
default_backend default


backend default
server default 127.0.0.1:8888
```

Add a redirect rule:
```
$ haproxysubdomains add test.cfg https mydomain.com subdomain 5432

$ cat test.cfg
```

```
frontend http
bind *:80


frontend https
bind *:443 ssl crt /etc/ssl/my_cert/
default_backend default
acl subdomain hdr(host) -i subdomain.mydomain.com
use_backend subdomain if subdomain


backend default
server default 127.0.0.1:8888


backend subdomain
server subdomain 127.0.0.1:5432
```

Remove a redirect rule:
```
$ haproxysubdomains del test.cfg https subdomain
```

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

haproxysubdomains-0.1.0.tar.gz (2.4 kB view details)

Uploaded Source

File details

Details for the file haproxysubdomains-0.1.0.tar.gz.

File metadata

File hashes

Hashes for haproxysubdomains-0.1.0.tar.gz
Algorithm Hash digest
SHA256 764d829c48967953687a159c446af2d813fd832837ea0bb528c4c638143c6f92
MD5 a3b82baff9b21a07800399e82b915cc5
BLAKE2b-256 11601665a8f0b98cc43099af51f1da3339b5ecbad61116697829dc5864a2fb5e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page