# n8n

<table border="1" id="bkmrk-status-production-su" style="border-collapse: collapse; width: 100%;"><tbody><tr><td style="width: 50%;">Status</td><td style="width: 50%;">Production</td></tr><tr><td style="width: 50%;">Supported distro</td><td style="width: 50%;">CentOS 8</td></tr></tbody></table>

This role deploys the [n8n](https://n8n.io/) workflow manager.

Here's a sample configuration

```YAML
n8n_src_ip:
  - 10.29.1.14 # Access only for the rev proxy
n8n_public_url: https://workflow.example.org/
```

And a sample reverse proxy configurtion, using the nginx role

```YAML
nginx_vhosts:
  # n8n
  - name: workflow.example.org
    proxy:
      backend: http://n8n.fws.fr:8021
    allowed_methods: [GET,HEAD,POST,OPTIONS,PUT,DELETE,PATCH]
```