mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
docs: Add instructions for opening firewall on CentOS (#6605)
* Add instructions for opening firewall * Allow access through the firewall
This commit is contained in:
@ -106,6 +106,13 @@ Add the following config:
|
||||
setsebool -P httpd_can_network_connect=1
|
||||
```
|
||||
|
||||
#### Allow access through firewall
|
||||
|
||||
```bash
|
||||
firewall-cmd --zone public --add-service http
|
||||
firewall-cmd --permanent --zone public --add-service http
|
||||
```
|
||||
|
||||
#### Restart Web server
|
||||
|
||||
```bash
|
||||
|
@ -131,6 +131,13 @@ server {
|
||||
setsebool -P httpd_can_sendmail=1
|
||||
```
|
||||
|
||||
#### Allow access through firewall
|
||||
|
||||
```bash
|
||||
firewall-cmd --zone public --add-service http
|
||||
firewall-cmd --permanent --zone public --add-service http
|
||||
```
|
||||
|
||||
#### Restart Web server
|
||||
|
||||
```bash
|
||||
|
Reference in New Issue
Block a user