This commit is contained in:
root
2024-01-27 07:49:05 +12:00
commit d45048e439
17 changed files with 435 additions and 0 deletions

9
docs/linux/selinux.md Normal file
View File

@@ -0,0 +1,9 @@
# Nginx
```
# Allow open local port
semanage port -a -t http_port_t -p tcp 28081
# Allow open remote port
setsebool -P httpd_can_network_connect 1
```