The Artica Reverse Proxy Manager is a Microsoft Windows application that administers a reverse proxy remotely.
It does not use a login and a password: it presents a client certificate and talks to a dedicated mTLS administration service on the appliance.
That service listens by default on TCP port 8080, on every interface — a port that most corporate firewalls will never let through.Download : ArticaReverseProxyManager.exe ( 1.3.0 )
The Administration redirector removes that constraint.
It publishes the very same service on a path of a website you already publish, so the desktop application reaches it on 443, under the site's own certificate and its own public name: https://gateway.example.net/rp-admin/ instead of https://appliance.example.net:8080/.
Nothing extra is opened on the network — and the administration port can even be taken off the network entirely.

Two objects are involved, and it is worth separating them clearly before configuring anything.
.enc file that Artica generates for one administrator. The redirector adds a third piece: a virtual directory — one of the paths you already define on a website — that acts as the endpoint of that service.
nginx cannot forward a mutual-TLS connection while preserving the client's TLS identity.
As soon as the feature is a location, nginx terminates TLS.
So the chain is deliberately cut in two:
https://gateway.example.net/rp-admin/… on port 443 and presents its client certificate. 403 when there is no certificate, or when the certificate was signed by a different authority.The trailing slash of the relay removes the prefix: the client asks for /rp-admin/reverse-proxy/capabilities, and the daemon receives /reverse-proxy/capabilities.
The desktop application does not need to know it is behind a redirector — it only stores the prefix once.
This point governs every precaution described further down.
A valid client certificate is a pass to the whole administration API of the reverse proxy.
The list of rules engraved in the certificate is used by the Windows application to limit what it shows; it is not enforced by the appliance.
Treat a .enc file exactly as you would treat an administrator password, and delete the entry when the person no longer needs it.
| Benefit | What it changes in practice |
|---|---|
| One port, and it is already open | Administration travels on 443, next to the site's normal traffic. No firewall request, no NAT rule, no VPN to administer a hosted appliance. |
| The administration port can disappear | Once every administrator uses a path, switch the service to a Unix socket. Nothing listens on the network any more: the only way in is through the paths you published, each of them guarded by a certificate. |
| It reuses what the site already has | The public DNS name, the certificate, the HTTP/2 stack, the load balancer in front of it. Nothing to renew separately, nothing to publish in DNS. |
| IP filtering still applies | The Deny list of the path is emitted inside the relay location. You can require both a valid certificate and a known source address. |
| Nothing changes for existing installations | A configuration generated without a path keeps its historical content, byte for byte, and keeps reaching port 8080. You can migrate one administrator at a time. |
| Removing a path is never silent | Before you un-publish or rename a path, the console asks the daemon how many client configurations depend on it, and tells you the number. |
/rp-admin on one of the sites the appliance already serves and administer it from the office, with no change on the hosting side.A path is only relayed when the website that carries it can genuinely serve it.
Four conditions, all verified by the appliance:
Go to Web services > your reverse-proxy service > Status.
The Admin clients widget switches the feature on and off.

Enabling it starts the mTLS administration service, creates the certificate authority dedicated to these client certificates, and adds an Admin clients entry to the left menu.
As long as the feature is off, the Administration redirector checkbox of a path stays locked, and says why.
On the Admin clients page, the Parameters button decides where the service itself listens.

| Mode | What it means |
|---|---|
Listen port (default 8080) |
The service listens on that TCP port, on every interface. Both direct access and redirector paths work. Ports already used by the appliance — SSH, the web console, the metrics virtual host and the daemon API — are refused with an explicit message. |
| Listen on a Unix socket | The TCP port is closed. The service is reachable only through /var/run/nginx/mtls-admins.sock, which only nginx can open. Administration is then exclusively through the redirector paths, and Direct access to the service port disappears from the generation form. |
Applying is not a simple setting change:
the appliance restarts the service and rebuilds every website that carries a published path, so their relay points at the new listening address in the same operation.
If one of those rebuilds fails, the console names the rules concerned instead of closing silently.
Open the website that will carry the endpoint — Web services > Websites > your rule — and go to the Paths tab, then New path.
Give the path a name of its own. It must not collide with a path your application serves, it cannot be the root /, it cannot be a regular expression, and /.well-known is reserved.
A short, unambiguous name such as /rp-admin is the right choice.
In the Security section, turn on Administration Redirector.

Two remarks on that section:
Save, then Build configuration.
The path appears in the list with a Administration redirector badge.

Go to Admin clients in the left menu, then New client.

| Field | What to enter |
|---|---|
| Rules | Every website this administrator works on. Selecting none grants nothing at all. The Windows application shows exactly this list in its site selector. |
| eMail address | Identifies the holder. It is what you will look for later when revoking the configuration. |
| User name | Optional. Left empty, the e-mail address is used as the certificate's common name. |
| Validity days | Lifetime of the certificate, 365 days by default. These certificates are not renewed automatically: plan the reissue. |
The Connection section is where the redirector comes in.
The Administration Redirector list offers Direct access to the service port and every path published on the appliance, named after the website that carries it.
Pick your path: Artica fills in the target server with the site's own host name and the listen port with its SSL port.

Both fields stay editable — change the target server when the administrator reaches the site through a different name (a public alias, a load balancer) than the one stored on the appliance.
The generated configurations are listed on the same page.
The Connection column shows, for each one, the path it goes through — or Direct access to the service port.

The download icon produces a mtls-config-<id>.enc file.
Send it to its holder over a channel you trust: it contains the private key.
In the desktop application, the administrator adds it once — it then appears in the appliance selector, next to any other appliance they administer.
Decrypted, the file is an INI whose network section reads:
[network]
server = gateway.example.net
port = 443
basepath = /rp-admin
Without a redirector, the basepath line is simply absent, and the file is exactly what earlier Artica versions produced.
That is why an existing deployment is never disturbed by this feature.
The clicking icon on the e-mail address opens the certificate itself — issuer, validity, fingerprint — when you need to check what was issued.
Un-publishing a path, disabling it, deleting it or renaming it breaks every client configuration that carries it — silently, on the administrators' side, since their .enc file still points at the old prefix.
The console therefore asks the appliance how many configurations depend on that path, and asks for confirmation with the number:

If the count cannot be obtained, the console says so and still asks — it never presents an unknown as a reassuring zero.
When the answer is a number greater than zero, reissue the configurations concerned before confirming: the Connection column of the Admin clients page tells you exactly which ones they are.
Artica never emits an approximate relay. When one of the conditions is not met, it writes a comment and no directive at all into the site's configuration: the path is simply handed to your backend as before, and the website keeps working. Read that comment in the generated configuration of the site to know which case you are in.
| Situation | What to do |
|---|---|
| The Admin clients feature is disabled | Enable it on the reverse-proxy status page (step 1). |
| The mTLS authority is missing or unreadable | The service has never started. Disable and re-enable the feature. |
| The website has no usable SSL frontend | Give the rule a certificate and an SSL listening port. Without them the relay would refuse every request, with no way to diagnose it. |
| The website already requires a client certificate | Publish the endpoint on another website. Two client authorities cannot coexist on one virtual host. |
| The path is refused (root, regular expression, forbidden character, traversal) | Rename it. Use a simple, absolute path such as /rp-admin. |
The path collides with another one, or with /.well-known |
Choose a name that no other path of the site serves. |
| The service certificate cannot be produced | Check the free space and the permissions of /etc/artica-postfix/reverse-proxy. |
/etc/artica-postfix/reverse-proxy/redirector-client.{pem,key} is what nginx presents to the administration service. 403 until the websites are rebuilt.403 or a 404.
| Item | Value |
|---|---|
| Administration service, default listening address | 0.0.0.0:8080 (TLS, client certificate required) |
| Unix socket mode | /var/run/nginx/mtls-admins.sock |
| Ports refused as a listening port | SSH, the web console, the metrics virtual host, the daemon API |
| Certificate authority of the client certificates | /etc/artica-postfix/reverse-proxy/mtls-ca.pem |
| Service certificate presented by nginx | /etc/artica-postfix/reverse-proxy/redirector-client.{pem,key} |
| Key added to the client configuration | [network] basepath, absent when there is no redirector |
| Downloaded file | mtls-config-<id>.enc — contains the private key |