排序
Nginx常用配置参考模板
nginx配置反向代理服务 server { listen 80; server_name abc.com; location / { proxy_pass http://localhost:8080/; index index.html; } } nginx配置h5项目,静态文件访问 server { listen 8...
Centos7使用firewall-cmd管理防火墙
先查看是否开启firewalld systemctl status firewalld 如果是未开启状态先要启用firewalld,执行以下命令开启firewalld systemctl start firewalld 查看已放行的端口 firewall-cmd --zone=publi...