Is it possible to configure replication panel?

xisip

New member
Joined
May 25, 2017
Messages
5
Is there a server with installed DirectAdmin(LAMP stack). There are several third-party servers to nginx(frontend) which work using proxy_pass to a Central server that works with DirectAdmin(backend, upstream).

It so happens that the Central server(DirectAdmin) is faltering and part. Competent to do the replication? You need to at failure of the Central server, the sites worked with mirrors.
 
No one has ever done replication on the server where you installed DirectAdmin?
 
Hello,

I guess your inquiry is a bit unclear. Some of us here have already built clusters with Directadmin. So you can search the forums for the existing threads and clarify your request.
 
I have all sites work on nginx+(DirectAdmin + LAMP)!
I want a server where you have installed DirectAdmin to have a copy, in the event of failure of one, all the sites started to work with the other!

Where is nginx installed is a single server, there I will make an entry similar to:

Code:
upstream backend {
    server backend1.example.com
    server backend2.example.com
}

server {
    location / {
        proxy_pass http://backend;
    }
}

How most correctly to configure replication servers to DirectAdmin?
 
Back
Top