mirror of https://github.com/Aidaho12/haproxy-wi
parent
f5e0aa7d03
commit
6cf78a7587
15
README.md
15
README.md
|
@ -60,12 +60,21 @@ Web interface(user-friendly web GUI, alerting, monitoring and secure) for managi
|
||||||
|
|
||||||
### Read instruction on the official [site](https://roxy-wi.org/installation.py#rpm)
|
### Read instruction on the official [site](https://roxy-wi.org/installation.py#rpm)
|
||||||
|
|
||||||
|
## DEB
|
||||||
|
|
||||||
|
### Read instruction on the official [site](https://roxy-wi.org/installation.py#deb)
|
||||||
|
|
||||||
## Manual install
|
## Manual install
|
||||||
|
|
||||||
### Read instruction on the official [site](https://roxy-wi.org/installation.py#manual)
|
### Read instruction on the official [site](https://roxy-wi.org/installation.py#manual)
|
||||||
|
|
||||||
# OS support
|
# OS support
|
||||||
Roxy-Wi was tested on EL7, EL8 and all scripts too. Debian/Ubuntu OS support at 'beta' stage, may work not correct
|
Roxy-WI supports the following OSes:
|
||||||
|
1. EL7(RPM installation and manual installation). It must be "Infrastructure Server" at least. x86_64 only
|
||||||
|
2. EL8(RPM installation and manual installation). It must be "Infrastructure Server" at least. x86_64 only
|
||||||
|
3. Amazon Linux 2(RPM installation and manual installation). x86_64 only
|
||||||
|
4. Ubuntu(DEB installation and manual installation). x86_64 only
|
||||||
|
5. Other Linux distributions (manual installation only). x86_64 only
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
@ -75,7 +84,7 @@ Default Roxy-WI use Sqlite, if you want use MySQL enable in config, and create d
|
||||||
|
|
||||||
### For MySQL support:
|
### For MySQL support:
|
||||||
|
|
||||||
### Read instruction on the official [site](https://roxy-wi.org/settings.py#db_settings)
|
### Read instruction on the official [site](https://roxy-wi.org/installation.py#database)
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
@ -115,3 +124,5 @@ $ ./create_db.py
|
||||||
and check executeble py files
|
and check executeble py files
|
||||||
|
|
||||||
If you see plain text, check section "Directory" in httpd conf
|
If you see plain text, check section "Directory" in httpd conf
|
||||||
|
|
||||||
|
[Read more] (https://roxy-wi.org/troubleshooting.py)
|
||||||
|
|
|
@ -6,3 +6,4 @@ paramiko-ng>=2.5.0
|
||||||
slack-sdk>=3.4.0
|
slack-sdk>=3.4.0
|
||||||
peewee>=3.14.4
|
peewee>=3.14.4
|
||||||
PyMySQL>=1.0.2
|
PyMySQL>=1.0.2
|
||||||
|
bottle>=0.12.18
|
|
@ -530,6 +530,7 @@ function awsProvisiningServer() {
|
||||||
$('#created-mess').show();
|
$('#created-mess').show();
|
||||||
$('#sever-status-'+server_id).text('Created');
|
$('#sever-status-'+server_id).text('Created');
|
||||||
$('#server-ip-'+server_id).text(data);
|
$('#server-ip-'+server_id).text(data);
|
||||||
|
$('#sever-status-'+server_id).css('color', 'var(--green-color)');
|
||||||
add_button_after_server_created();
|
add_button_after_server_created();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1705,6 +1706,7 @@ function doProvisiningServer() {
|
||||||
$('#created-mess').show();
|
$('#created-mess').show();
|
||||||
$('#sever-status-'+server_id).text('Created');
|
$('#sever-status-'+server_id).text('Created');
|
||||||
$('#server-ip-'+server_id).text(data);
|
$('#server-ip-'+server_id).text(data);
|
||||||
|
$('#sever-status-'+server_id).css('color', 'var(--green-color)');
|
||||||
add_do_button_after_server_created();
|
add_do_button_after_server_created();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue