You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
947 B

7 years ago
# haproxy-webintarface
A simple web interface for managing Haproxy servers
7 years ago
7 years ago
![alt text](image/5.jpeg "Edit config page")
# Install
7 years ago
For install just dowload archive and untar somewhere:
$ cd /opt/haproxy-webintarface
7 years ago
7 years ago
$ tar xf haproxy-webintarface-master.zip
7 years ago
# Settings
7 years ago
edit haproxy-webintarface.config with your env
copy ssh key on all HAproxy servers
For online edit HAproxy settings enable socket on HAproxt servers:
global
7 years ago
log 172.28.0.5 local2 debug err
7 years ago
stats socket *:1999 level admin
7 years ago
![alt text](image/4.jpeg "View logs page")
7 years ago
7 years ago
# Start
7 years ago
Create systemd service to auto start:
[Unit]
7 years ago
7 years ago
Description=Haproxy web interface
After=syslog.target network.target
[Service]
7 years ago
7 years ago
Type=simple
User=user
ExecStart=/opt/haproxy/server.py >> /opt/haproxy/log/haproxy-webface.log
RestartSec=2s
Restart=on-failure
TimeoutStopSec=1s
#StandardOutput=null
[Install]
7 years ago
7 years ago
WantedBy=multi-user.target
7 years ago
![alt text](image/1.jpeg "Start page")